HomeSort by relevance Sort by last modified time
    Searched refs:objPath (Results 1 - 5 of 5) sorted by null

  /frameworks/compile/libbcc/include/bcc/
bcc.h 113 char const *objPath,
118 char const *objPath,
  /frameworks/compile/libbcc/lib/ExecutionEngine/
Script.cpp 175 int Script::prepareRelocatable(char const *objPath,
189 if (objFile.open(objPath, OpenMode::Write) < 0) {
190 ALOGE("Failed to open %s for write.\n", objPath);
197 ::unlink(objPath);
198 ALOGE("Unable to write ELF to file %s.\n", objPath);
208 int Script::prepareSharedObject(char const *objPath,
270 std::string objPath = getCachedObjectPath();
274 if (objFile.open(objPath.c_str(), OpenMode::Read) < 0) {
400 std::string objPath = getCachedObjectPath();
407 ::unlink(objPath.c_str())
    [all...]
bcc.cpp 129 char const *objPath,
158 return unwrap(script)->prepareRelocatable(objPath, RM, flags);
163 char const *objPath,
167 return unwrap(script)->prepareSharedObject(objPath, dsoPath, flags);
Script.h 148 * compiled before and pass it in objPath to generate shared object. If the
149 * objPath is NULL, we'll invoke prepareRelocatable() to get .o first (if
156 int prepareSharedObject(char const *objPath,
160 int prepareRelocatable(char const *objPath,
  /external/llvm/tools/gold/
gold-plugin.cpp 434 const char *objPath;
435 if (lto_codegen_compile_to_file(code_gen, &objPath)) {
448 if ((*add_input_file)(objPath) != LDPS_OK) {
450 (*message)(LDPL_ERROR, "File left behind in: %s", objPath);
461 Cleanup.push_back(sys::Path(objPath));

Completed in 71 milliseconds