/frameworks/base/core/java/android/app/backup/ |
D | BackupAgent.java | 304 final String domain; in fullBackupFile() local 307 domain = FullBackup.DATABASE_TREE_TOKEN; in fullBackupFile() 310 domain = FullBackup.SHAREDPREFS_TREE_TOKEN; in fullBackupFile() 313 domain = FullBackup.DATA_TREE_TOKEN; in fullBackupFile() 316 domain = FullBackup.ROOT_TREE_TOKEN; in fullBackupFile() 324 Log.i(TAG, "backupFile() of " + filePath + " => domain=" + domain in fullBackupFile() 326 FullBackup.backupToTar(getPackageName(), domain, null, rootpath, filePath, in fullBackupFile() local 338 protected final void fullBackupFileTree(String packageName, String domain, String rootPath, in fullBackupFileTree() argument 378 FullBackup.backupToTar(packageName, domain, null, rootPath, filePath, in fullBackupFileTree() 422 int type, String domain, String path, long mode, long mtime) in onRestoreFile() argument [all …]
|
D | FullBackup.java | 62 static public native int backupToTar(String packageName, String domain, in backupToTar() argument
|
/frameworks/base/core/java/android/net/http/ |
D | CertificateChainValidator.java | 75 HttpsConnection connection, SSLSocket sslSocket, String domain) in doHandshakeAndValidateServerCertificates() argument 100 … return verifyServerDomainAndCertificates((X509Certificate[]) peerCertificates, domain, "RSA"); in doHandshakeAndValidateServerCertificates() 112 byte[][] certChain, String domain, String authType) in verifyServerCertificates() argument 125 return verifyServerDomainAndCertificates(serverCertificates, domain, authType); in verifyServerCertificates() 152 X509Certificate[] chain, String domain, String authType) in verifyServerDomainAndCertificates() argument 160 boolean valid = domain != null in verifyServerDomainAndCertificates() 161 && !domain.isEmpty() in verifyServerDomainAndCertificates() 162 && sVerifier.verify(domain, currCertificate); in verifyServerDomainAndCertificates() 165 HttpLog.v("certificate not for this host: " + domain); in verifyServerDomainAndCertificates()
|
/frameworks/ex/common/tools/ |
D | make-iana-tld-pattern.py | 137 for domain in domains: 138 domain = domain.lower() variable 140 if len(domain) > 0: 141 getBucket(buckets, domain[0]).add(domain.strip()) 143 if domain.startswith('xn--'): 144 puny = domain.strip()[4:]
|
/frameworks/wilhelm/src/itf/ |
D | IStreamInformation.c | 53 XAuint32 *domain) /* [out] */ in IStreamInformation_QueryStreamType() argument 57 if (NULL == domain) { in IStreamInformation_QueryStreamType() 63 *domain = XA_DOMAINTYPE_UNKNOWN; in IStreamInformation_QueryStreamType() 68 *domain = XA_DOMAINTYPE_UNKNOWN; in IStreamInformation_QueryStreamType() 78 *domain = thiz->mStreamInfoTable.itemAt(streamIndex).domain; in IStreamInformation_QueryStreamType() 117 switch (streamInfo.domain) { in IStreamInformation_QueryStreamInformation() 141 "unknown domain %u", streamIndex, streamInfo.domain); in IStreamInformation_QueryStreamInformation() 304 contInf.domain = XA_DOMAINTYPE_CONTAINER; in IStreamInformation_init()
|
/frameworks/ex/common/java/com/android/common/ |
D | Rfc822Validator.java | 58 public Rfc822Validator(String domain) { in Rfc822Validator() argument 59 mDomain = domain; in Rfc822Validator() 147 String domain = removeIllegalCharacters(text.substring(index + 1)); in fixText() local 148 boolean emptyDomain = domain.length() == 0; in fixText() 150 tokens[i].setAddress(fix + "@" + (!emptyDomain ? domain : mDomain)); in fixText()
|
/frameworks/base/packages/SharedStorageBackup/src/com/android/sharedstoragebackup/ |
D | SharedStorageAgent.java | 46 String domain = FullBackup.SHARED_PREFIX + i; in onFullBackup() local 47 fullBackupFileTree(null, domain, v.getPath(), null, output); in onFullBackup() 57 int type, String domain, String relpath, long mode, long mtime) in onRestoreFile() argument 59 if (DEBUG) Slog.d(TAG, "Shared restore: [ " + domain + " : " + relpath + "]"); in onRestoreFile()
|
/frameworks/base/services/java/com/android/server/ |
D | SystemBackupAgent.java | 122 int type, String domain, String path, long mode, long mtime) in onRestoreFile() argument 124 Slog.i(TAG, "Restoring file domain=" + domain + " path=" + path); in onRestoreFile() 131 if (domain.equals(FullBackup.ROOT_TREE_TOKEN)) { in onRestoreFile() 143 Slog.w(TAG, "Skipping unrecognized system file: [ " + domain + " : " + path + " ]"); in onRestoreFile()
|
D | BackupManagerService.java | 2855 String domain; // e.g. FullBackup.DATABASE_TREE_TOKEN field in BackupManagerService.FileMetadata 2867 sb.append(domain); sb.append(':'); sb.append(path); sb.append(','); in toString() 2949 mInfo.domain, mInfo.path, mInfo.mode, mInfo.mtime, in run() 3191 if (info.domain.equals(FullBackup.APK_TREE_TOKEN)) { in restoreOneFile() 3214 if (info.domain.equals(FullBackup.APK_TREE_TOKEN)) { in restoreOneFile() 3313 info.domain, info.path, info.mode, info.mtime, in restoreOneFile() 3771 b.append(info.domain); in dumpFileMetadata() 3843 info.domain = FullBackup.SHARED_STORAGE_TOKEN; in readTarHeaders() 3862 info.domain = info.path.substring(0, slash); in readTarHeaders() 3864 if (!info.domain.equals(FullBackup.APK_TREE_TOKEN) in readTarHeaders() [all …]
|
/frameworks/wilhelm/tests/sandbox/ |
D | xaplay.c | 226 static const char *domainToString(XAuint32 domain) in domainToString() argument 228 switch (domain) { in domainToString() 624 XAuint32 domain; in main() local 630 streamIndex, &domain); in main() 644 domain = 12345; in main() 646 &domain); in main() 648 printf(" QueryStreamType: domain = 0x%X (%s)\n", domain, domainToString(domain)); in main() 665 switch (domain) { in main() 759 XAuint32 domain; in main() local 761 &domain); in main()
|
/frameworks/base/core/jni/ |
D | android_app_backup_FullBackup.cpp | 87 String8 domain(domainchars ? domainchars : ""); in backupToTar() local 110 return write_tarfile(packageName, domain, rootpath, path, writer); in backupToTar()
|
/frameworks/base/core/java/android/nfc/ |
D | NdefRecord.java | 455 public static NdefRecord createExternal(String domain, String type, byte[] data) { in createExternal() argument 456 if (domain == null) throw new NullPointerException("domain is null"); in createExternal() 459 domain = domain.trim().toLowerCase(Locale.US); in createExternal() 462 if (domain.length() == 0) throw new IllegalArgumentException("domain is empty"); in createExternal() 465 byte[] byteDomain = domain.getBytes(Charsets.UTF_8); in createExternal()
|
/frameworks/wilhelm/tests/native-media/jni/ |
D | native-media-jni.c | 243 XAuint32 domain; in StreamChangeCallback() local 244 res = (*caller)->QueryStreamType(caller, streamIndex, &domain); in StreamChangeCallback() 246 switch (domain) { in StreamChangeCallback() 256 fprintf(stderr, "Unexpected domain %u\n", domain); in StreamChangeCallback()
|
/frameworks/base/core/java/android/app/ |
D | IBackupAgent.aidl | 117 int type, String domain, String path, long mode, long mtime, in doRestoreFile() argument
|
/frameworks/base/core/java/android/net/ |
D | VpnService.java | 416 public Builder addSearchDomain(String domain) { in addSearchDomain() argument 420 mConfig.searchDomains.add(domain); in addSearchDomain()
|
/frameworks/base/telephony/java/com/android/internal/telephony/sip/ |
D | SipPhone.java | 342 String domain = p.getSipDomain(); in getSipDomain() local 344 if (domain.endsWith(":5060")) { in getSipDomain() 345 return domain.substring(0, domain.length() - 5); in getSipDomain() 347 return domain; in getSipDomain()
|
/frameworks/wilhelm/src/ |
D | data.h | 102 XAuint32 domain; member
|
/frameworks/base/include/androidfw/ |
D | BackupHelpers.h | 137 int write_tarfile(const String8& packageName, const String8& domain,
|
/frameworks/base/core/java/com/google/android/util/ |
D | AbstractMessageParser.java | 332 private boolean isValidDomain(String domain) { in isValidDomain() argument 334 if (matches(getResources().getDomainSuffixes(), reverse(domain))) { in isValidDomain() 382 String domain = text.substring(nextChar, index); in parseURL() local 383 if (!isValidDomain(domain)) { in parseURL()
|
/frameworks/base/libs/androidfw/ |
D | BackupHelpers.cpp | 492 int write_tarfile(const String8& packageName, const String8& domain, in write_tarfile() argument 510 if ((5 + packageName.length() + 1 + domain.length() >= 155) || (relpath.length() >= 100)) { in write_tarfile() 604 if (domain.length() > 0) { in write_tarfile() 605 prefix.appendPath(domain); in write_tarfile()
|
/frameworks/base/tests/DumpRenderTree/assets/results/ |
D | layout_tests_failed.txt | 561 /sdcard/android/layout_tests/http/tests/wml/access-target-domain-deny.html 650 /sdcard/android/layout_tests/http/tests/security/dataURL/xss-DENIED-from-data-url-in-foreign-domain… 651 /sdcard/android/layout_tests/http/tests/security/dataURL/xss-DENIED-from-data-url-in-foreign-domain… 652 /sdcard/android/layout_tests/http/tests/security/dataURL/xss-DENIED-to-data-url-in-foreign-domain-s… 654 /sdcard/android/layout_tests/http/tests/security/dataURL/xss-DENIED-to-data-url-in-foreign-domain-s… 655 /sdcard/android/layout_tests/http/tests/security/dataURL/xss-DENIED-to-data-url-in-foreign-domain-w… 706 …http/tests/security/javascriptURL/xss-DENIED-from-javascript-url-in-foreign-domain-window-open.html 711 …ests/http/tests/security/javascriptURL/xss-DENIED-to-javascript-url-in-foreign-domain-subframe.html 714 …s/http/tests/security/javascriptURL/xss-DENIED-to-javascript-url-in-foreign-domain-window-open.html 718 …ts/http/tests/security/javascriptURL/xss-DENIED-from-javascript-url-in-foreign-domain-subframe.html [all …]
|
/frameworks/wilhelm/src/android/ |
D | MediaPlayer_to_android.cpp | 109 if (XA_DOMAINTYPE_VIDEO == mp->mStreamInfo.mStreamInfoTable.itemAt(i).domain) { in player_handleMediaPlayerEventNotifications() 116 streamInfo.domain = XA_DOMAINTYPE_VIDEO; in player_handleMediaPlayerEventNotifications()
|
/frameworks/base/docs/html/guide/basics/ |
D | fixme-gs-core-packages.jd | 79 <p> These packages provide additional domain-specific features of the Android
|
/frameworks/base/docs/html/guide/topics/connectivity/ |
D | sip.jd | 95 <td>Defines a SIP profile, including a SIP account, domain and server information. 217 account, and domain and server information. The profile associated with the SIP 232 SipProfile.Builder builder = new SipProfile.Builder(username, domain);
|
/frameworks/base/docs/html/training/basics/firstapp/ |
D | creating-project.jd | 81 that you use a standard domain-style package name that’s appropriate to your company or
|