Home
last modified time | relevance | path

Searched refs:objPath (Results 1 – 3 of 3) sorted by relevance

/external/swiftshader/third_party/LLVM/tools/gold/
Dgold-plugin.cpp434 const char *objPath; in all_symbols_read_hook() local
435 if (lto_codegen_compile_to_file(code_gen, &objPath)) { in all_symbols_read_hook()
448 if ((*add_input_file)(objPath) != LDPS_OK) { in all_symbols_read_hook()
450 (*message)(LDPL_ERROR, "File left behind in: %s", objPath); in all_symbols_read_hook()
461 Cleanup.push_back(sys::Path(objPath)); in all_symbols_read_hook()
/external/deqp/scripts/android/
Dbuild_apk.py478 objPath = resolvePath(config, [BuildRoot(), self.package.getAppDirName(), "obj"])
479 classPaths = [objPath] + [resolvePath(config, lib.getClassesJarPath()) for lib in self.libraries]
482 if os.path.exists(objPath):
483 shutil.rmtree(objPath)
485 os.makedirs(objPath)
492 "-d", objPath,
503 pushWorkingDir(objPath)
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
DJitManager.cpp667 llvm::SmallString<MAX_PATH> objPath = filePath; in notifyObjectCompiled() local
668 objPath += JIT_OBJ_EXT; in notifyObjectCompiled()
672 llvm::raw_fd_ostream fileObj(objPath.c_str(), err, llvm::sys::fs::F_None); in notifyObjectCompiled()