/packages/modules/NetworkStack/common/netlinkclient/src/android/net/netlink/ |
D | InetDiagMessage.java | 56 public static byte[] InetDiagReqV2(int protocol, InetSocketAddress local, in InetDiagReqV2() argument 58 return InetDiagReqV2(protocol, local, remote, family, flags, 0 /* pad */, in InetDiagReqV2() 83 public static byte[] InetDiagReqV2(int protocol, @Nullable InetSocketAddress local, in InetDiagReqV2() argument 96 new StructInetDiagReqV2(protocol, local, remote, family, pad, idiagExt, state); in InetDiagReqV2() 115 private static int lookupUidByFamily(int protocol, InetSocketAddress local, in lookupUidByFamily() argument 119 byte[] msg = InetDiagReqV2(protocol, local, remote, family, flags); in lookupUidByFamily() 136 private static int lookupUid(int protocol, InetSocketAddress local, in lookupUid() argument 148 uid = lookupUidByFamily(protocol, remote, local, family, NLM_F_REQUEST, fd); in lookupUid() 150 uid = lookupUidByFamily(protocol, local, remote, family, NLM_F_REQUEST, fd); in lookupUid() 168 uid = lookupUidByFamily(protocol, local, wildcard, AF_INET6, in lookupUid() [all …]
|
D | StructInetDiagReqV2.java | 51 public StructInetDiagReqV2(int protocol, InetSocketAddress local, InetSocketAddress remote, in StructInetDiagReqV2() argument 53 this(protocol, local, remote, family, 0 /* pad */, 0 /* extension */, in StructInetDiagReqV2() 57 public StructInetDiagReqV2(int protocol, @Nullable InetSocketAddress local, in StructInetDiagReqV2() argument 64 if ((local == null) != (remote == null)) { in StructInetDiagReqV2() 67 mId = ((local != null && remote != null) ? new StructInetDiagSockId(local, remote) : null); in StructInetDiagReqV2()
|
/packages/apps/Dialer/java/com/android/dialer/logging/ |
D | contact_lookup_result.proto | 18 // Contact was found in the local database. 39 // Number was found in Dialer's local cache but we don't know how it was 43 // Number was found in Dialer's local cache and was originally identified 47 // Number was found in Dialer's local cache and was originally identified 51 // Number was found in Dialer's local cache and was originally identified 55 // Number was found in Dialer's local cache and was originally identified 59 // Number was found in Dialer's local cache and was originally identified 64 // Number was found in Dialer's local cache and was originally identified 71 // Number was found in Dialer's local cache and was originally identified 78 // Number was found in Dialer's local cache and was originally identified [all …]
|
/packages/modules/NetworkStack/tests/unit/src/android/net/netlink/ |
D | InetDiagSocketTest.java | 74 InetSocketAddress local = new InetSocketAddress(InetAddress.getByName("10.0.100.2"), in testInetDiagReqV2UdpInet4() local 78 final byte[] msg = InetDiagMessage.InetDiagReqV2(IPPROTO_UDP, local, remote, AF_INET, in testInetDiagReqV2UdpInet4() 109 InetSocketAddress local = new InetSocketAddress( in testInetDiagReqV2TcpInet6() local 113 byte[] msg = InetDiagMessage.InetDiagReqV2(IPPROTO_TCP, local, remote, AF_INET6, in testInetDiagReqV2TcpInet6() 146 InetSocketAddress local = new InetSocketAddress( in testInetDiagReqV2TcpInetWithExt() local 150 byte[] msg = InetDiagMessage.InetDiagReqV2(IPPROTO_TCP, local, remote, AF_INET, in testInetDiagReqV2TcpInetWithExt() 155 local = new InetSocketAddress( in testInetDiagReqV2TcpInetWithExt() 159 msg = InetDiagMessage.InetDiagReqV2(IPPROTO_TCP, local, remote, AF_INET6, in testInetDiagReqV2TcpInetWithExt() 192 InetSocketAddress local = new InetSocketAddress( in testInetDiagReqV2TcpInet6NoIdSpecified() local 208 msg = InetDiagMessage.InetDiagReqV2(IPPROTO_TCP, local, null, AF_INET6, in testInetDiagReqV2TcpInet6NoIdSpecified()
|
/packages/modules/NetworkStack/tests/integration/src/android/net/netlink/ |
D | InetDiagSocketIntegrationTest.java | 71 public InetSocketAddress local; field in InetDiagSocketIntegrationTest.Connection 118 local = (InetSocketAddress) Os.getsockname(localFd); in TcpConnection() 138 local = (InetSocketAddress) Os.getsockname(localFd); in UdpConnection() 143 private void checkConnectionOwnerUid(int protocol, InetSocketAddress local, in checkConnectionOwnerUid() argument 145 final int uid = mCm.getConnectionOwnerUid(protocol, local, remote); in checkConnectionOwnerUid() 157 final int localPort = udp.local.getPort(); in findLikelyFreeUdpPort() 168 checkConnectionOwnerUid(tcp.protocol, tcp.local, tcp.remote, true); in checkGetConnectionOwnerUid() 169 checkConnectionOwnerUid(IPPROTO_UDP, tcp.local, tcp.remote, false); in checkGetConnectionOwnerUid() 171 checkConnectionOwnerUid(tcp.protocol, tcp.local, new InetSocketAddress(0), false); in checkGetConnectionOwnerUid() 175 checkConnectionOwnerUid(udp.protocol, udp.local, udp.remote, true); in checkGetConnectionOwnerUid() [all …]
|
/packages/apps/Contacts/src/com/android/contacts/model/ |
D | RawContactDelta.java | 105 public static RawContactDelta mergeAfter(RawContactDelta local, RawContactDelta remote) { in mergeAfter() argument 108 if (local == null && (remoteValues.isDelete() || remoteValues.isTransient())) return null; in mergeAfter() 111 if (local == null) local = new RawContactDelta(); in mergeAfter() 114 final Long localVersion = (local.mValues == null) ? null : local.mValues in mergeAfter() 122 local.mValues = ValuesDelta.mergeAfter(local.mValues, remote.mValues); in mergeAfter() 130 final ValuesDelta localEntry = local.getEntry(childId); in mergeAfter() 135 local.addEntry(merged); in mergeAfter() 140 return local; in mergeAfter()
|
D | ValuesDelta.java | 335 public static ValuesDelta mergeAfter(ValuesDelta local, ValuesDelta remote) { in mergeAfter() argument 337 if (local == null && (remote.isDelete() || remote.isTransient())) return null; in mergeAfter() 340 if (local == null) local = new ValuesDelta(); in mergeAfter() 342 if (!local.beforeExists()) { in mergeAfter() 344 local.mAfter = remote.getCompleteValues(); in mergeAfter() 347 local.mAfter = remote.mAfter; in mergeAfter() 350 return local; in mergeAfter()
|
D | RawContactDeltaList.java | 101 public static RawContactDeltaList mergeAfter(RawContactDeltaList local, in mergeAfter() argument 103 if (local == null) local = new RawContactDeltaList(); in mergeAfter() 110 final RawContactDelta localEntity = local.getByRawContactId(rawContactId); in mergeAfter() 115 local.add(merged); in mergeAfter() 119 return local; in mergeAfter()
|
/packages/providers/CalendarProvider/src/com/android/providers/calendar/ |
D | CalendarInstancesHelper.java | 704 Time local = new Time(); in updateInstancesLocked() local 706 local.timezone = Time.TIMEZONE_UTC; in updateInstancesLocked() 708 local.timezone = fields.timezone; in updateInstancesLocked() 712 local, instanceValues); in updateInstancesLocked() 890 Time local, ContentValues values) { in computeTimezoneDependentFields() argument 891 local.set(begin); in computeTimezoneDependentFields() 892 int startDay = Time.getJulianDay(begin, local.gmtoff); in computeTimezoneDependentFields() 893 int startMinute = local.hour * 60 + local.minute; in computeTimezoneDependentFields() 895 local.set(end); in computeTimezoneDependentFields() 896 int endDay = Time.getJulianDay(end, local.gmtoff); in computeTimezoneDependentFields() [all …]
|
/packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/ |
D | TestConnectionManager.java | 388 TestManagedConnection local = new TestManagedConnection(remote, false); in makeConnection() local 389 mManagedConnectionByRemote.put(remote, local); in makeConnection() 390 return local; in makeConnection()
|
/packages/apps/Car/libs/car-ui-lib/ |
D | gradlew.bat | 8 @rem Set local scope for the variables with windows NT shell 72 @rem End local scope for the variables with windows NT shell
|
/packages/apps/Car/libs/car-ui-lib/tests/paintbooth/ |
D | gradlew.bat | 8 @rem Set local scope for the variables with windows NT shell 72 @rem End local scope for the variables with windows NT shell
|
/packages/inputmethods/LatinIME/ |
D | gradlew.bat | 8 @rem Set local scope for the variables with windows NT shell 78 @rem End local scope for the variables with windows NT shell
|
/packages/apps/Dialer/java/com/android/dialer/rtt/ |
D | rtt_transcript.proto | 25 // Whether this message is sent from local device or received from remote
|
/packages/modules/DnsResolver/ |
D | libnetd_resolv.map.txt | 26 local:
|
/packages/apps/Bluetooth/ |
D | Android.bp | 76 // Add in path to Bluetooth directory because local path does not exist
|
/packages/apps/Dialer/java/com/android/dialer/calllog/database/contract/ |
D | number_attributes.proto | 40 // TODO(zachh): If we need to support photos other than local contacts', add a
|
/packages/apps/Car/CompanionDeviceSupport/src/com/android/car/companiondevicesupport/feature/calendarsync/proto/ |
D | calendar.proto | 146 // Timestamp independent of any timezone or local calendar.
|
/packages/services/Car/tests/BugReportApp/ |
D | README.md | 12 5. Otherwise it creates MetaBugReport record in a local db and starts recording audio message.
|
/packages/services/Telecomm/proto/ |
D | telecom.proto | 215 // Disconnected because of a local user-initiated action,
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
D | ContactsProvider2.java | 7239 final Cursor local = queryLocal(localUri, projection, selection, selectionArgs, in queryCorpLookupIfNecessary() local 7243 MoreDatabaseUtils.dumpCursor(TAG, "local", local); in queryCorpLookupIfNecessary() 7246 if (local.getCount() > 0 || corpUserId < 0) { in queryCorpLookupIfNecessary() 7247 return local; in queryCorpLookupIfNecessary() 7250 local.close(); in queryCorpLookupIfNecessary() 7261 local.close(); in queryCorpLookupIfNecessary() 7265 local.close(); in queryCorpLookupIfNecessary() 7268 return local; in queryCorpLookupIfNecessary()
|
/packages/apps/Test/connectivity/sl4n/rapidjson/doc/ |
D | internals.md | 204 …at some compilers cannot localize some member data access of streams into local variables or regis…
|
D | Doxyfile.in | 450 # This flag is only useful for Objective-C code. When set to YES local methods, 1490 # MathJax. However, it is strongly recommended to install a local copy of
|
/packages/apps/LegacyCamera/jni/feature_mos/doc/ |
D | feature_mos_API_doxyfile | 329 # This flag is only useful for Objective-C code. When set to YES local
|
/packages/apps/LegacyCamera/jni/feature_stab/doc/ |
D | dbreg_API_doxyfile | 329 # This flag is only useful for Objective-C code. When set to YES local
|