Searched refs:filepath (Results 1 – 8 of 8) sorted by relevance
/hardware/knowles/athletico/sound_trigger_hal/tests/ |
D | tunnel_test.c | 94 char filepath[MAX_FILE_PATH]; local 146 snprintf(filepath, sizeof(filepath), "%s", argv[i+1]); 147 … ALOGE("specify a output file path %s, argc i = %d, argv[%d] = %s", filepath, i, i+1, argv[i+1]); 186 strcpy(filepath, DEFAULT_PATH); 190 strcpy(filepath, DEFAULT_PATH); 192 strcpy(filepath, argv[argc-1]); 195 ALOGE("Output path %s", filepath); 217 snprintf(filename, MAX_FILE_PATH, "%s%s", filepath, UNPARSED_OUTPUT_FILE); 322 snprintf(filename, 256, "%s/%s", filepath, filename_str_format); 327 …rintf(filename, MAX_FILE_PATH, "%s%sid%d-src0x%x-enc0x%x_client%d.raw", filepath, FILE_PREFIX, tun… [all …]
|
/hardware/interfaces/automotive/can/1.0/tools/configurator/ |
D | canprototools.cpp | 45 std::optional<CanBusConfig> parseConfigFile(const std::string& filepath) { in parseConfigFile() argument 46 std::ifstream cfg_stream(filepath); in parseConfigFile() 53 LOG(ERROR) << "Can't open " << filepath << " for reading"; in parseConfigFile() 71 LOG(ERROR) << "Failed to parse (text format) " << filepath; in parseConfigFile() 75 LOG(ERROR) << "Failed to parse (binary format) " << filepath; in parseConfigFile()
|
D | canhalconfigurator.cpp | 70 static bool configuratorStart(const std::string& filepath) { in configuratorStart() argument 73 auto pb_cfg = config::parseConfigFile(filepath); in configuratorStart()
|
D | canprototools.h | 31 std::optional<CanBusConfig> parseConfigFile(const std::string& filepath);
|
/hardware/interfaces/usb/gadget/1.1/default/lib/ |
D | UsbGadgetUtils.cpp | 29 char filepath[kMaxFilePathLength]; in unlinkFunctions() local 39 sprintf(filepath, "%s/%s", path, function->d_name); in unlinkFunctions() 40 ret = remove(filepath); in unlinkFunctions() 42 ALOGE("Unable remove file %s errno:%d", filepath, errno); in unlinkFunctions()
|
/hardware/google/pixel/usb/ |
D | UsbGadgetUtils.cpp | 30 char filepath[kMaxFilePathLength]; in unlinkFunctions() local 42 snprintf(filepath, kMaxFilePathLength, "%s/%s", path, function->d_name); in unlinkFunctions() 43 ret = remove(filepath); in unlinkFunctions() 45 ALOGE("Unable remove file %s errno:%d", filepath, errno); in unlinkFunctions()
|
/hardware/interfaces/prebuilt_hashes/ |
D | dump_hals_for_release.py | 75 filepath = os.path.join(dirpath, filename) 76 mo = re.match(Constants.HAL_PATH_PATTERN, filepath)
|
/hardware/google/camera/common/profiler/ |
D | profiler.cc | 133 void DumpResult(std::string filepath); 247 void ProfilerImpl::DumpResult(std::string filepath) { in DumpResult() argument 248 if (std::ofstream fout(filepath, std::ios::out); fout.is_open()) { in DumpResult()
|