Home
last modified time | relevance | path

Searched refs:domain (Results 1 – 25 of 53) sorted by relevance

123

/frameworks/base/core/java/android/app/backup/
DBackupAgent.java397 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 …]
DFullBackup.java60 static public native int backupToTar(String packageName, String domain, in backupToTar() argument
/frameworks/ex/common/tools/
Dmake-iana-tld-pattern.py137 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/
DCertificateChainValidator.java111 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/
DIStreamInformation.c53 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/
DRfc822Validator.java89 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/
DTvContentRating.java705 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/
DSharedStorageAgent.java55 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/
DSystemBackupAgent.java145 int type, String domain, String path, long mode, long mtime) in onRestoreFile() argument
147 Slog.i(TAG, "Restoring file domain=" + domain + " path=" + path); in onRestoreFile()
154 if (domain.equals(FullBackup.ROOT_TREE_TOKEN)) { in onRestoreFile()
166 Slog.w(TAG, "Skipping unrecognized system file: [ " + domain + " : " + path + " ]"); in onRestoreFile()
/frameworks/wilhelm/tests/sandbox/
Dxaplay.c226 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/
Dandroid_app_backup_FullBackup.cpp87 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/
DNdefRecord.java457 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/
Dnative-media-jni.c243 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/
DIBackupAgent.aidl124 int type, String domain, String path, long mode, long mtime, in doRestoreFile() argument
/frameworks/base/core/java/android/text/style/
DTtsSpan.java1341 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/
Ddata.h104 XAuint32 domain; member
/frameworks/base/include/androidfw/
DBackupHelpers.h137 int write_tarfile(const String8& packageName, const String8& domain,
/frameworks/base/core/java/android/net/
DVpnService.java563 public Builder addSearchDomain(String domain) { in addSearchDomain() argument
567 mConfig.searchDomains.add(domain); in addSearchDomain()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
DSipPhone.java388 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/
DAbstractMessageParser.java332 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/
DBackupHelpers.cpp495 int write_tarfile(const String8& packageName, const String8& domain, in write_tarfile() argument
513 if ((5 + packageName.length() + 1 + domain.length() >= 155) || (relpath.length() >= 100)) { in write_tarfile()
607 if (domain.length() > 0) { in write_tarfile()
608 prefix.appendPath(domain); in write_tarfile()
/frameworks/wilhelm/src/android/
DMediaPlayer_to_android.cpp109 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/
Dscroll.jd136 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/
DBackupManagerService.java4287 String domain; // e.g. FullBackup.DATABASE_TREE_TOKEN field in BackupManagerService.FileMetadata
4299 sb.append(domain); sb.append(':'); sb.append(path); sb.append(','); in toString()
4387 mInfo.domain, mInfo.path, mInfo.mode, mInfo.mtime, in run()
4479 if (info.domain.equals(FullBackup.APK_TREE_TOKEN)) { in restoreOneFile()
4502 if (info.domain.equals(FullBackup.APK_TREE_TOKEN)) { in restoreOneFile()
4593 if (info.domain.equals(FullBackup.OBB_TREE_TOKEN)) { in restoreOneFile()
4613 info.domain, info.path, info.mode, info.mtime, in restoreOneFile()
5194 b.append(info.domain); in dumpFileMetadata()
5267 info.domain = FullBackup.SHARED_STORAGE_TOKEN; in readTarHeaders()
5291 info.domain = info.path.substring(0, slash); in readTarHeaders()
[all …]
/frameworks/base/docs/html/training/sync-adapters/
Dcreating-authenticator.jd196 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

123