Home
last modified time | relevance | path

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

/packages/services/Car/tools/
Dupdate-obd2-sensors.py233 def generateJava(filepath): argument
235 intfile = open(os.path.join(filepath, "IntegerSensorIndex.java"), "w")
236 floatfile = open(os.path.join(filepath, "FloatSensorIndex.java"), "w")
248 def generatePython(filepath): argument
250 destfile = open(filepath, "w")
271 def load(filepath): argument
273 ast = hidl_parser.parser.parse(filepath)
/packages/apps/TV/tuner/src/com/android/tv/tuner/source/
DFileTsStreamer.java136 String filepath = new File(FILE_DIR, channel.filename).getAbsolutePath(); in startStream() local
137 mSource = new StreamProvider(filepath); in startStream()
237 private StreamProvider(String filepath) { in StreamProvider() argument
238 mFilepath = filepath; in StreamProvider()
239 open(filepath); in StreamProvider()
242 private void open(String filepath) { in open() argument
244 mInputStream = new BufferedInputStream(new FileInputStream(filepath)); in open()
/packages/apps/TV/tuner/src/com/android/tv/tuner/data/
DTunerChannel.java329 public synchronized void setFilepath(String filepath) { in setFilepath() argument
330 mProto.filepath = filepath == null ? "" : filepath; in setFilepath()
334 return mProto.filepath; in getFilepath()
469 mProto.filepath, in toString()
/packages/services/Car/car-bugreportd/
Dmain.cpp127 for (const auto& filepath : extra_files) { in zipFilesToFd() local
128 const auto name = android::base::Basename(filepath); in zipFilesToFd()
135 android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(filepath.c_str(), O_RDONLY))); in zipFilesToFd()
/packages/services/Car/tests/BugReportApp/utils/
Dbugreport_app_tester.py273 filepath=row[5],
462 meta_bugreport.filepath), zipfilesize / 1024.0 / 1024.0))
499 ['pull', meta_bugreport.filepath, zippath])
/packages/services/Car/tests/BugReportApp/src/com/google/android/car/bugreport/
DBugStorageProvider.java184 String filepath = FileUtils.getZipFile(getContext(), in insert() local
187 values.put(COLUMN_FILEPATH, filepath); in insert()
/packages/apps/Gallery/src/com/android/camera/
DImageManager.java249 public static int getExifOrientation(String filepath) { in getExifOrientation() argument
253 exif = new ExifInterface(filepath); in getExifOrientation()
/packages/apps/LegacyCamera/src/com/android/camera/panorama/
DPanoramaActivity.java954 String filepath = Storage.generateFilepath(filename); in savePanorama() local
957 ExifInterface exif = new ExifInterface(filepath); in savePanorama()
962 Log.e(TAG, "cannot set exif data: " + filepath); in savePanorama()
/packages/apps/TV/tuner/proto/
Dchannel.proto38 optional string filepath = 6; field