/frameworks/base/core/java/android/util/ |
D | AtomicFile.java | 63 public AtomicFile(File baseName) { in AtomicFile() argument 64 this(baseName, (SystemConfigFileCommitEventLogger) null); in AtomicFile() 71 public AtomicFile(File baseName, String commitTag) { in AtomicFile() argument 72 this(baseName, new SystemConfigFileCommitEventLogger(commitTag)); in AtomicFile() 83 public AtomicFile(@NonNull File baseName, in AtomicFile() argument 85 mBaseName = baseName; in AtomicFile() 86 mNewName = new File(baseName.getPath() + ".new"); in AtomicFile() 87 mLegacyBackupName = new File(baseName.getPath() + ".bak"); in AtomicFile()
|
/frameworks/base/libs/androidfw/tests/ |
D | Split_test.cpp | 135 ResTable::resource_name baseName; in TEST_F() local 136 EXPECT_TRUE(table.getResourceName(R::string::test1, false, &baseName)); in TEST_F() 144 EXPECT_EQ(String16(baseName.package, baseName.packageLen), in TEST_F() 147 EXPECT_EQ(String16(baseName.type, baseName.typeLen), in TEST_F() 150 EXPECT_EQ(String16(baseName.name, baseName.nameLen), in TEST_F()
|
/frameworks/opt/bitmap/src/com/android/bitmap/ |
D | NamedThreadFactory.java | 28 public NamedThreadFactory(final String baseName) { in NamedThreadFactory() argument 30 mBaseName = baseName; in NamedThreadFactory()
|
/frameworks/base/services/core/java/com/android/server/ |
D | IntentResolver.java | 607 String baseName = name; in register_mime_types() local 610 baseName = name.substring(0, slashpos).intern(); in register_mime_types() 618 addFilter(mBaseTypeToFilter, baseName, filter); in register_mime_types() 620 addFilter(mWildTypeToFilter, baseName, filter); in register_mime_types() 638 String baseName = name; in unregister_mime_types() local 641 baseName = name.substring(0, slashpos).intern(); in unregister_mime_types() 649 remove_all_objects(mBaseTypeToFilter, baseName, filter); in unregister_mime_types() 651 remove_all_objects(mWildTypeToFilter, baseName, filter); in unregister_mime_types()
|
/frameworks/base/core/java/com/android/internal/os/ |
D | ProcessCpuTracker.java | 203 public String baseName; field in ProcessCpuTracker.Stats 540 st.baseName = procStatsString[0]; in collectStats() 548 st.baseName = procStatsString[0]; in collectStats() 552 st.baseName = "<unknown>"; in collectStats() 564 st.name = st.baseName; in collectStats() 963 newName = st.baseName;
|
/frameworks/base/packages/Shell/src/com/android/shell/ |
D | BugreportProgressService.java | 346 return String.format("%s-%s%s", info.baseName, info.getName(), suffix); in getFileName() 616 String baseName = getBugreportBaseName(bugreportType); in startBugreportAPI() local 619 BugreportInfo info = new BugreportInfo(mContext, baseName, name, in startBugreportAPI() 1822 private final String baseName; field in BugreportProgressService.BugreportInfo 1923 BugreportInfo(Context context, String baseName, String name, in BugreportInfo() argument 1931 this.baseName = baseName; in BugreportInfo() 2116 .append(", baseName: ").append(baseName) in toString() 2147 baseName = in.readString(); in BugreportInfo() 2175 dest.writeString(baseName); in writeToParcel()
|
/frameworks/base/core/jni/ |
D | com_android_internal_content_NativeLibraryHelper.cpp | 536 const char* baseName = (lastSlash == NULL) ? fileName : fileName + 1; in com_android_internal_content_NativeLibraryHelper_hasRenderscriptBitcode() local 537 if (isFilenameSafe(baseName)) { in com_android_internal_content_NativeLibraryHelper_hasRenderscriptBitcode()
|
/frameworks/multidex/ |
D | build.gradle | 70 baseName = String.format("top-of-tree-m2repository-%s", project.multidexVersion)
|
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/parsing/ |
D | PackageParserLegacyCoreTest.java | 338 File copyRawResourceToFile(String baseName, int resourceId) throws Exception { in copyRawResourceToFile() argument 344 outFile = new File(context.getFilesDir(), baseName); in copyRawResourceToFile()
|
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/ |
D | ApexManagerTest.java | 524 private static File extractResource(String baseName, String fullResourceName) { in extractResource() argument 527 file = File.createTempFile(baseName, ".apex"); in extractResource()
|
/frameworks/base/services/core/java/com/android/server/locksettings/ |
D | LockSettingsStorage.java | 554 final String baseName = formatSimple("%016x.%s", handle, name); in getSynthenticPasswordStateFilePathForUser() local 555 return new File(baseDir, baseName).getAbsolutePath(); in getSynthenticPasswordStateFilePathForUser()
|
/frameworks/base/tools/aapt/ |
D | Resource.cpp | 310 String16 baseName(it.getBaseName()); in makeFileResources() local 311 const char16_t* str = baseName.string(); in makeFileResources() 312 const char16_t* const end = str + baseName.size(); in makeFileResources() 328 baseName, in makeFileResources()
|
/frameworks/base/services/core/java/com/android/server/pm/ |
D | ShortcutService.java | 1482 final String baseName = String.valueOf(injectCurrentTimeMillis()); in openIconFileForWrite() local 1484 final String filename = (suffix == 0 ? baseName : baseName + "_" + suffix) + ".png"; in openIconFileForWrite()
|
/frameworks/base/services/core/java/com/android/server/am/ |
D | ActivityManagerService.java | 10527 if (st.pid == fFindPid || (st.baseName != null in dumpApplicationMemoryUsage() 10528 && st.baseName.equals(innerArgs[0]))) { in dumpApplicationMemoryUsage() 10557 + r.baseName + "] **"); in dumpApplicationMemoryUsage() 10561 pid, r.baseName, 0, 0, 0, 0, 0, 0); in dumpApplicationMemoryUsage() 11176 if (st.pid == fFindPid || (st.baseName != null in dumpApplicationMemoryUsage() 11177 && st.baseName.equals(innerArgs[0]))) { in dumpApplicationMemoryUsage() 11211 proto.write(MemInfoDumpProto.ProcessMemory.PROCESS_NAME, r.baseName); in dumpApplicationMemoryUsage()
|