Searched refs:in_file (Results 1 – 3 of 3) sorted by relevance
/tools/dexter/dexter/ |
D | dexter.cc | 321 FILE* in_file = fopen(dex_filename_, "rb"); in ProcessDex() local 322 if (in_file == nullptr) { in ProcessDex() 328 fclose(in_file); in ProcessDex() 332 fseek(in_file, 0, SEEK_END); in ProcessDex() 333 size_t in_size = ftell(in_file); in ProcessDex() 339 fseek(in_file, 0, SEEK_SET); in ProcessDex() 340 SLICER_CHECK(fread(in_buff.get(), 1, in_size, in_file) == in_size); in ProcessDex()
|
/tools/test/connectivity/acts/framework/acts/test_utils/wifi/ |
D | wifi_test_utils.py | 1456 def convert_pem_key_to_pkcs8(in_file, out_file): argument 1468 asserts.assert_true(in_file.endswith(".pem"), "Input file has to be .pem.") 1472 " -topk8").format(in_file, out_file)
|
/tools/test/connectivity/acts/framework/acts/controllers/ |
D | android_device.py | 697 in_file = self.adb_logcat_file_path 698 with open(in_file, 'r', encoding='utf-8', errors='replace') as f:
|