Home
last modified time | relevance | path

Searched refs:filepath (Results 1 – 18 of 18) sorted by relevance

/system/sepolicy/build/soong/
Dfilegroup.go103 path := filepath.Join(d, f)
120 fg.systemPublicSrcs = fg.findSrcsInDir(ctx, filepath.Join(ctx.ModuleDir(), "public"))
121 fg.systemPrivateSrcs = fg.findSrcsInDir(ctx, filepath.Join(ctx.ModuleDir(), "private"))
122 fg.systemVendorSrcs = fg.findSrcsInDir(ctx, filepath.Join(ctx.ModuleDir(), "vendor"))
123 fg.systemReqdMaskSrcs = fg.findSrcsInDir(ctx, filepath.Join(ctx.ModuleDir(), "reqd_mask"))
/system/tools/hidl/build/
DfqName.go85 return filepath.Join(filepath.Join(f.packageComponents...), f.version()) + "/"
88 return filepath.Join(filepath.Join(f.packageComponents...), f.sanitizedVersion()) + "/"
/system/extras/simpleperf/
Dread_apk.h38 EmbeddedElf(const std::string& filepath, in EmbeddedElf() argument
42 : filepath_(filepath) in EmbeddedElf()
50 const std::string &filepath() const { return filepath_; } in filepath() function
Devent_type.cpp43 bool SetTracepointEventsFilePath(const std::string& filepath) { in SetTracepointEventsFilePath() argument
44 if (!android::base::ReadFileToString(filepath, &tracepoint_events)) { in SetTracepointEventsFilePath()
45 PLOG(ERROR) << "Failed to read " << filepath; in SetTracepointEventsFilePath()
Devent_type.h61 bool SetTracepointEventsFilePath(const std::string& filepath);
Denvironment.h45 std::string filepath; member
Denvironment.cpp198 module.filepath = it->second; in GetModulesInUse()
208 kernel_mmap->filepath = kernel_mmap->name; in GetKernelAndModuleMmaps()
211 if (map.filepath.empty()) { in GetKernelAndModuleMmaps()
212 map.filepath = "[" + map.name + "]"; in GetKernelAndModuleMmaps()
Ddso.cpp486 elf->filepath(), elf->entry_offset(), elf->entry_size(), build_id, &addr, &offset); in GetMinExecutableVaddr()
556 status = ParseSymbolsFromEmbeddedElfFile(elf->filepath(), elf->entry_offset(), in LoadSymbols()
729 result = GetBuildIdFromEmbeddedElfFile(elf->filepath(), elf->entry_offset(), in GetBuildIdFromDsoPath()
DOfflineUnwinder.cpp129 name = elf->filepath().c_str(); in CreateMapInfo()
Dcmd_record.cpp1097 kernel_mmap.len, 0, kernel_mmap.filepath, dumping_attr_id_.ids[0]); in DumpKernelMaps()
1103 module_mmap.len, 0, module_mmap.filepath, dumping_attr_id_.ids[0]); in DumpKernelMaps()
/system/tools/xsdc/build/
Dxsdc.go176 currentApiFileName := filepath.Join(api_dir, "current.txt")
177 removedApiFileName := filepath.Join(api_dir, "removed.txt")
185 filepath.Join(api_dir, "last_current.txt"))
187 filepath.Join(api_dir, "last_removed.txt"))
/system/core/healthd/
Dcharger_test.cpp100 ::android::hardware::hidl_handle createHidlHandle(const char* filepath) { in createHidlHandle() argument
101 int fd = creat(filepath, S_IRUSR | S_IWUSR); in createHidlHandle()
/system/tools/hidl/
DCoordinator.cpp108 std::string filepath; in getFormatter() local
109 status_t err = getFilepath(fqName, location, fileName, &filepath); in getFormatter()
114 onFileAccess(filepath, "w"); in getFormatter()
116 if (!Coordinator::MakeParentHierarchy(filepath)) { in getFormatter()
117 fprintf(stderr, "ERROR: could not make directories for %s.\n", filepath.c_str()); in getFormatter()
121 FILE* file = fopen(filepath.c_str(), "w"); in getFormatter()
124 fprintf(stderr, "ERROR: could not open file %s: %d\n", filepath.c_str(), errno); in getFormatter()
/system/ca-certificates/soong/
Dca_certificates.go42 filename := filepath.Base(src)
/system/extras/simpleperf/scripts/inferno/
Dinferno.py168 filepath = os.path.realpath(f.name)
230 return "file://" + filepath
/system/tools/hidl/c2hal/
DREADME.md13 c2hal [-g] [-o dir] -p package (-r interface-root)+ (header-filepath)+
/system/security/keystore/
Dblob.cpp702 static std::tuple<bool, uid_t, std::string> filename2UidAlias(const std::string& filepath) { in filename2UidAlias() argument
709 auto filenamebase = filepath.find_last_of('/'); in filename2UidAlias()
711 filenamebase == std::string::npos ? filepath : filepath.substr(filenamebase + 1); in filename2UidAlias()
/system/libufdt/utils/src/
Dmkdtboimg.py856 filepath = args.dtbdir + os.sep + dt_arg['filename']
857 params['dt_file'] = open(filepath, 'rb')