Home
last modified time | relevance | path

Searched refs:path (Results 76 – 100 of 130) sorted by relevance

123456

/art/test/970-iface-super-resolution-gen/util-src/
Dgenerate_java.py32 sys.path.append(str(Path(BUILD_TOP)/"art"/"test"/"utils"/"python"))
/art/libdexfile/dex/
Ddex_file_loader.cc196 UniqueCPtr<const char[]> path(realpath(base_location.c_str(), nullptr)); in GetDexCanonicalLocation() local
197 if (path != nullptr && path.get() != base_location) { in GetDexCanonicalLocation()
198 return std::string(path.get()) + suffix; in GetDexCanonicalLocation()
/art/test/648-many-direct-methods/util-src/
Dgenerate_java.py31 sys.path.append(str(Path(BUILD_TOP)/"art"/"test"/"utils"/"python"))
/art/test/960-default-smali/
Dinfo.txt19 …JAVA_HOME="/path/to/java-8-jdk" ../run-test --use-java-home --update --jvm --host 956-default-smali
/art/test/988-method-trace/
Dgen_srcs.py32 INTRINSICS_LIST_H = os.path.dirname(os.path.realpath(__file__)) + "/../../runtime/intrinsics_list.h"
/art/tools/
Dhost_bcp.sh21 Extracts boot class path locations from <image> and outputs the appropriate
Ddex2oat_wrapper74 # Create boot class path filename or location list.
94 # Create default boot class path if none was provided.
/art/runtime/interpreter/mterp/
Dgen_mterp.py20 SCRIPT_DIR = os.path.dirname(sys.argv[0])
/art/test/425-invoke-super/smali/
Dinvokesuper.smali29 # Do an invoke super on a non-super class to force slow path.
/art/libnativebridge/include/nativebridge/
Dnative_bridge.h125 bool NativeBridgeIsPathSupported(const char* path);
/art/tools/ahat/
DREADME.txt94 Simplify presentation of sample path from gc root.
106 Show sample path from GC root with field names in place of dominator path.
/art/build/
Dart.go300 path := strings.Split(ctx.Path().ToMakePath().String(), "/")
302 dst := strings.Join(path[len(path)-2:], "/")
/art/libartbase/base/
Dfile_utils.cc475 bool LocationIsOnSystem(const char* path) { in LocationIsOnSystem() argument
477 UNUSED(path); in LocationIsOnSystem()
481 UniqueCPtr<const char[]> full_path(realpath(path, nullptr)); in LocationIsOnSystem()
/art/tools/veridex/
DAndroid.mk24 $(system_stub_dex): $(call resolve-prebuilt-sdk-jar-path,system_current) | $(ZIP2ZIP) $(DX)
/art/tools/ahat/src/main/com/android/ahat/
DObjectHandler.java257 List<PathElement> path = inst.getPathFromGcRoot(); in printGcRootPath() local
261 path.add(0, root); in printGcRootPath()
298 HeapTable.render(doc, query, DOMINATOR_PATH_ID, table, mSnapshot, path); in printGcRootPath()
/art/runtime/jit/
Dprofile_saver.cc851 for (const std::string& path : code_paths) { in AddTrackedLocationsToMap() local
852 size_t last_sep_index = path.find_last_of('/'); in AddTrackedLocationsToMap()
853 if (last_sep_index == path.size() - 1) { in AddTrackedLocationsToMap()
859 ? path in AddTrackedLocationsToMap()
860 : path.substr(last_sep_index + 1); in AddTrackedLocationsToMap()
862 code_paths_and_filenames.push_back(path); in AddTrackedLocationsToMap()
/art/test/598-checker-irreducible-dominance/smali/
DIrreducibleLoop.smali20 # not do a fix-point iteration and would miss the path to `outer_back_edge`
/art/test/162-method-resolution/jasmin/
DTest5User.j30 dup ; Bogus operand to be swallowed by the pop in the non-exceptional path.
/art/test/692-vdex-inmem-loader/src/
DMain.java122 private static native void setProcessDataDir(String path); in setProcessDataDir() argument
/art/runtime/
Dclass_loader_context.cc598 for (const std::string& path : class_loader_chain_->classpath) { in EncodeClassPathContexts() local
601 const std::string base_location(DexFileLoader::GetBaseLocation(path)); in EncodeClassPathContexts()
1274 static inline bool AbsolutePathHasRelativeSuffix(const std::string& path, in AbsolutePathHasRelativeSuffix() argument
1276 DCHECK(IsAbsoluteLocation(path)); in AbsolutePathHasRelativeSuffix()
1278 return (path.size() > suffix.size()) && in AbsolutePathHasRelativeSuffix()
1279 (path[path.size() - suffix.size() - 1u] == '/') && in AbsolutePathHasRelativeSuffix()
1280 (std::string_view(path).substr(/*pos*/ path.size() - suffix.size()) == suffix); in AbsolutePathHasRelativeSuffix()
Dhidden_api_test.cc506 static bool LoadDexFiles(const std::string& path, in LoadDexFiles() argument
511 if (!ArtDexFileLoader().Open(path.c_str(), in LoadDexFiles()
512 path, in LoadDexFiles()
539 static bool Remove(const std::string& path, /*out*/ std::string* error_msg) { in Remove() argument
540 if (TEMP_FAILURE_RETRY(remove(path.c_str())) == 0) { in Remove()
543 *error_msg = StringPrintf("Unable to remove(\"%s\"): %s", path.c_str(), strerror(errno)); in Remove()
/art/libnativeloader/
Dpublic_libraries.cpp208 std::string path(kI18nApexLibPath); in InitDefaultPublicLibraries() local
209 path.append("/").append(lib_name); in InitDefaultPublicLibraries()
214 if (stat(path.c_str(), &s) != 0) { in InitDefaultPublicLibraries()
DAndroid.bp38 // Library search path needed for running host tests remotely (from testcases directory).
/art/libnativebridge/
Dnative_bridge.cc572 bool NativeBridgeIsPathSupported(const char* path) { in NativeBridgeIsPathSupported() argument
575 return callbacks->isPathSupported(path); in NativeBridgeIsPathSupported()
/art/test/693-vdex-inmem-loader-evict/src/
DMain.java73 private static native void setProcessDataDir(String path); in setProcessDataDir() argument

123456