/frameworks/base/core/java/android/app/backup/ |
D | BackupAgent.java | 397 final String domain; in fullBackupFile() local 400 domain = FullBackup.DATABASE_TREE_TOKEN; in fullBackupFile() 403 domain = FullBackup.SHAREDPREFS_TREE_TOKEN; in fullBackupFile() 406 domain = FullBackup.DATA_TREE_TOKEN; in fullBackupFile() 409 domain = FullBackup.ROOT_TREE_TOKEN; in fullBackupFile() 412 domain = FullBackup.MANAGED_EXTERNAL_TREE_TOKEN; in fullBackupFile() 420 Log.i(TAG, "backupFile() of " + filePath + " => domain=" + domain in fullBackupFile() 422 FullBackup.backupToTar(getPackageName(), domain, null, rootpath, filePath, in fullBackupFile() local 434 protected final void fullBackupFileTree(String packageName, String domain, String rootPath, in fullBackupFileTree() argument 474 FullBackup.backupToTar(packageName, domain, null, rootPath, filePath, in fullBackupFileTree() [all …]
|
D | FullBackup.java | 60 static public native int backupToTar(String packageName, String domain, in backupToTar() argument
|
/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/base/core/java/android/net/http/ |
D | CertificateChainValidator.java | 111 HttpsConnection connection, SSLSocket sslSocket, String domain) in doHandshakeAndValidateServerCertificates() argument 136 … return verifyServerDomainAndCertificates((X509Certificate[]) peerCertificates, domain, "RSA"); in doHandshakeAndValidateServerCertificates() 148 byte[][] certChain, String domain, String authType) in verifyServerCertificates() argument 167 return verifyServerDomainAndCertificates(serverCertificates, domain, authType); in verifyServerCertificates() 211 X509Certificate[] chain, String domain, String authType) in verifyServerDomainAndCertificates() argument 219 boolean valid = domain != null in verifyServerDomainAndCertificates() 220 && !domain.isEmpty() in verifyServerDomainAndCertificates() 221 && NoPreloadHolder.sVerifier.verify(domain, in verifyServerDomainAndCertificates() 225 HttpLog.v("certificate not for this host: " + domain); in verifyServerDomainAndCertificates() 234 trustManager.checkServerTrusted(chain, authType, domain); in verifyServerDomainAndCertificates()
|
/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 | 89 public Rfc822Validator(String domain) { in Rfc822Validator() argument 90 mDomain = domain; in Rfc822Validator() 177 String domain = removeIllegalCharacters(text.substring(index + 1)); in fixText() local 178 boolean emptyDomain = domain.length() == 0; in fixText() 180 tokens[i].setAddress(fix + "@" + (!emptyDomain ? domain : mDomain)); in fixText()
|
/frameworks/base/media/java/android/media/tv/ |
D | TvContentRating.java | 705 public static TvContentRating createRating(String domain, String ratingSystem, in createRating() argument 707 if (TextUtils.isEmpty(domain)) { in createRating() 716 return new TvContentRating(domain, ratingSystem, rating, subRatings); in createRating() 753 String domain, String ratingSystem, String rating, String[] subRatings) { in TvContentRating() argument 754 mDomain = domain; in TvContentRating()
|
/frameworks/base/packages/SharedStorageBackup/src/com/android/sharedstoragebackup/ |
D | SharedStorageAgent.java | 55 String domain = FullBackup.SHARED_PREFIX + i; in onFullBackup() local 56 fullBackupFileTree(null, domain, v.getPath(), externalFilesDirFilter, output); in onFullBackup() 66 int type, String domain, String relpath, long mode, long mtime) in onRestoreFile() argument 68 if (DEBUG) Slog.d(TAG, "Shared restore: [ " + domain + " : " + relpath + "]"); in onRestoreFile()
|
/frameworks/base/core/java/com/android/server/backup/ |
D | SystemBackupAgent.java | 140 int type, String domain, String path, long mode, long mtime) in onRestoreFile() argument 142 Slog.i(TAG, "Restoring file domain=" + domain + " path=" + path); in onRestoreFile() 149 if (domain.equals(FullBackup.ROOT_TREE_TOKEN)) { in onRestoreFile() 161 Slog.w(TAG, "Skipping unrecognized system file: [ " + domain + " : " + path + " ]"); in onRestoreFile()
|
/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 (jint) write_tarfile(packageName, domain, rootpath, path, writer); in backupToTar()
|
/frameworks/base/core/java/android/nfc/ |
D | NdefRecord.java | 457 public static NdefRecord createExternal(String domain, String type, byte[] data) { in createExternal() argument 458 if (domain == null) throw new NullPointerException("domain is null"); in createExternal() 461 domain = domain.trim().toLowerCase(Locale.ROOT); in createExternal() 464 if (domain.length() == 0) throw new IllegalArgumentException("domain is empty"); in createExternal() 467 byte[] byteDomain = domain.getBytes(StandardCharsets.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 | 124 int type, String domain, String path, long mode, long mtime, in doRestoreFile() argument
|
/frameworks/base/core/java/android/text/style/ |
D | TtsSpan.java | 1341 String domain) { in setEmailArguments() argument 1342 return setDomain(domain).setUsername(username); in setEmailArguments() 1376 public ElectronicBuilder setDomain(String domain) { in setDomain() argument 1377 return setStringArgument(TtsSpan.ARG_DOMAIN, domain); in setDomain()
|
/frameworks/wilhelm/src/ |
D | data.h | 104 XAuint32 domain; member
|
/frameworks/base/include/androidfw/ |
D | BackupHelpers.h | 137 int write_tarfile(const String8& packageName, const String8& domain,
|
/frameworks/base/core/java/android/net/ |
D | VpnService.java | 495 public Builder addSearchDomain(String domain) { in addSearchDomain() argument 499 mConfig.searchDomains.add(domain); in addSearchDomain()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/ |
D | SipPhone.java | 388 String domain = p.getSipDomain(); in getSipDomain() local 390 if (domain.endsWith(":5060")) { in getSipDomain() 391 return domain.substring(0, domain.length() - 5); in getSipDomain() 393 return domain; in getSipDomain()
|
/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/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/training/gestures/ |
D | scroll.jd | 136 will be drawn into. At any given time, a subset of the total chart domain and range are drawn 141 graph domain and range are decimal/float values, {@code mCurrentViewport} is of 148 // chart domain and range. The viewport is the part of the app that the
|
/frameworks/base/services/backup/java/com/android/server/backup/ |
D | BackupManagerService.java | 4177 String domain; // e.g. FullBackup.DATABASE_TREE_TOKEN field in BackupManagerService.FileMetadata 4189 sb.append(domain); sb.append(':'); sb.append(path); sb.append(','); in toString() 4277 mInfo.domain, mInfo.path, mInfo.mode, mInfo.mtime, in run() 4369 if (info.domain.equals(FullBackup.APK_TREE_TOKEN)) { in restoreOneFile() 4392 if (info.domain.equals(FullBackup.APK_TREE_TOKEN)) { in restoreOneFile() 4483 if (info.domain.equals(FullBackup.OBB_TREE_TOKEN)) { in restoreOneFile() 4503 info.domain, info.path, info.mode, info.mtime, in restoreOneFile() 5084 b.append(info.domain); in dumpFileMetadata() 5157 info.domain = FullBackup.SHARED_STORAGE_TOKEN; in readTarHeaders() 5181 info.domain = info.path.substring(0, slash); in readTarHeaders() [all …]
|
/frameworks/base/docs/html/training/sync-adapters/ |
D | creating-authenticator.jd | 196 of a domain name. The framework uses the account type as part of the sync adapter's 201 value, use a domain name that you control. While the framework uses it to manage your
|