Home
last modified time | relevance | path

Searched refs:program_path (Results 1 – 15 of 15) sorted by relevance

/aosp_15_r20/external/executorch/runtime/executor/test/
H A Dbackend_integration_test.cpp314 const char* program_path() const { in program_path() function in BackendIntegrationTest
335 Result<FileDataLoader> loader = FileDataLoader::from(program_path()); in TEST_P()
364 Result<FileDataLoader> loader = FileDataLoader::from(program_path()); in TEST_P()
430 Result<FileDataLoader> loader = FileDataLoader::from(program_path()); in TEST_P()
506 Result<FileDataLoader> loader = FileDataLoader::from(program_path()); in TEST_P()
534 Result<FileDataLoader> loader = FileDataLoader::from(program_path()); in TEST_P()
556 Result<FileDataLoader> loader = FileDataLoader::from(program_path()); in TEST_P()
633 const char* program_path() const { in program_path() function in DelegateDataAlignmentTest
661 FileDataLoader::from(program_path(), /*alignment=*/expected_alignment()); in TEST_P()
/aosp_15_r20/art/libarttools/
H A Dart_exec.cc236 std::string program_path = argv[options.command_pos]; in main() local
239 if (program_path == "/apex/com.android.art/bin/artd" && OS::FileExists(kCompatArtdPath)) { in main()
241 program_path = kCompatArtdPath; in main()
242 command_args[0] = program_path.data(); in main()
250 execv(program_path.c_str(), command_args.data()); in main()
/aosp_15_r20/development/vndk/tools/header-checker/src/dumper/
H A Dheader_checker.cpp102 std::string program_path = in PrintResourceDir() local
104 if (program_path.empty()) { in PrintResourceDir()
108 llvm::outs() << clang::driver::Driver::GetResourcesPath(program_path) << "\n"; in PrintResourceDir()
/aosp_15_r20/external/minijail/
H A Dminijail0_cli.c1252 char *program_path = in parse_args() local
1256 if (access(program_path, X_OK)) { in parse_args()
1262 *elftype = get_elf_linkage(program_path); in parse_args()
1263 free(program_path); in parse_args()
/aosp_15_r20/external/executorch/backends/apple/coreml/runtime/sdk/
H A Dprogram_path.mm2 // program_path.mm
10 #import "program_path.h"
H A DETCoreMLModelProfiler.mm19 #import "program_path.h"
/aosp_15_r20/packages/modules/adb/
Dadb.cpp902 WCHAR program_path[MAX_PATH]; in launch_server() local
903 const DWORD module_result = GetModuleFileNameW(NULL, program_path, in launch_server()
904 arraysize(program_path)); in launch_server()
905 if ((module_result >= arraysize(program_path)) || (module_result == 0)) { in launch_server()
938 program_path, /* program path */ in launch_server()
/aosp_15_r20/external/pytorch/torch/onnx/_internal/exporter/
H A D_capture_strategies.py257 program_path = self._artifacts_dir / f"onnx_export_{self._timestamp}.pt"
259 torch.jit.save(jit_model, program_path)
H A D_core.py1071 program_path = artifacts_dir / f"onnx_export_{timestamp}.pt2"
1073 torch.export.save(program, program_path)
/aosp_15_r20/external/executorch/backends/apple/coreml/runtime/workspace/executorchcoreml.xcodeproj/
H A Dproject.pbxproj17 …5E8E22B997ECE009C3FAC /* program_path.mm in Sources */ = {isa = PBXBuildFile; fileRef = C945E8D52B…
136 …* program_path.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.…
139program_path.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp…
358 C945E8D22B997ECD009C3FAC /* program_path.h */,
359 C945E8D52B997ECD009C3FAC /* program_path.mm */,
749 C945E8E22B997ECE009C3FAC /* program_path.mm in Sources */,
/aosp_15_r20/frameworks/native/services/gpuservice/gpuwork/include/gpuwork/
H A DGpuWork.h51 bool attachTracepoint(const char* program_path, const char* tracepoint_group,
/aosp_15_r20/external/executorch/backends/apple/coreml/runtime/test/
H A DETCoreMLModelStructurePathTests.mm11 #import <program_path.h>
/aosp_15_r20/external/executorch/backends/apple/coreml/
H A DCMakeLists.txt73 runtime/sdk/program_path.mm
/aosp_15_r20/external/compiler-rt/lib/msan/tests/
H A Dmsan_test.cc2920 char program_path[kMaxPathLength]; in GetPathToLoadable() local
2921 GetProgramPath(program_path, sizeof(program_path)); in GetPathToLoadable()
2923 const char *last_slash = strrchr(program_path, '/'); in GetPathToLoadable()
2925 size_t dir_len = (size_t)(last_slash - program_path); in GetPathToLoadable()
2940 (int)dir_len, program_path, basename); in GetPathToLoadable()
/aosp_15_r20/external/python/cpython3/Lib/test/
Dtest_os.py2010 program_path = os.sep + 'absolutepath'
2013 fullpath = os.path.join(os.fsencode(program_path), program)
2019 fullpath = os.path.join(program_path, program)
2035 with _execvpe_mockup(defpath=program_path) as calls:
2047 env_path[b'PATH'] = program_path
2049 env_path['PATH'] = program_path