Home | History | Annotate | Download | only in ExecutionEngine

Lines Matching refs:objPath

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());
413 if (objFile.open(objPath.c_str(), OpenMode::Write) >= 0 &&
443 if (unlink(objPath.c_str()) != 0) {
445 objPath.c_str(), strerror(errno));