HomeSort by relevance Sort by last modified time
    Searched refs:filePath (Results 51 - 75 of 81) sorted by null

1 23 4

  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/log/
EventLogParser.java 122 * @param filePath
125 public boolean init(String filePath) {
127 BufferedReader reader = new BufferedReader(new FileReader(filePath));
522 * @param filePath the file path to write the file.
525 public void saveTags(String filePath) throws IOException {
526 File destFile = new File(filePath);
  /external/webkit/WebCore/platform/win/
ClipboardWin.cpp 222 WCHAR filePath[MAX_PATH];
231 wcscpy_s(filePath, MAX_PATH, localPathStr);
249 if (swprintf_s(filePath, MAX_PATH, TEXT("%s-%d%s"), tempPath, i, extension) == -1)
251 if (!::PathFileExists(filePath))
254 HANDLE tempFileHandle = CreateFile(filePath, GENERIC_READ | GENERIC_WRITE, 0, 0, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, 0);
266 SIZE_T dropFilesSize = sizeof(DROPFILES) + (sizeof(WCHAR) * (wcslen(filePath) + 2));
274 wcscpy((LPWSTR)(dropFiles + 1), filePath);
  /packages/apps/Camera/src/com/android/camera/
ImageManager.java 171 String filePath = directory + "/" + filename;
182 degree[0] = getExifOrientation(filePath);
207 values.put(Images.Media.DATA, filePath);
218 public static int getExifOrientation(String filepath) {
222 exif = new ExifInterface(filepath);
VideoCamera.java     [all...]
Camera.java 853 private boolean saveDataToFile(String filePath, byte[] data) {
856 f = new FileOutputStream(filePath);
1114 String filepath = ImageManager.getTempJpegPath(); local
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
ImageManager.java 209 String filePath = directory + "/" + filename;
220 degree[0] = getExifOrientation(filePath);
242 values.put(Images.Media.DATA, filePath);
252 public static int getExifOrientation(String filepath) {
256 exif = new ExifInterface(filepath);
  /sdk/eventanalyzer/src/com/android/eventanalyzer/
EventAnalyzer.java 117 // get the filepath and break.
201 * @param filePath the location of the file.
204 private void parseTextLogFile(String filePath) throws IOException {
207 String tagFile = filePath + TAG_FILE_EXT;
222 new InputStreamReader(new FileInputStream(filePath)));
  /external/webkit/WebCore/platform/chromium/
ChromiumBridge.h 155 static String mimeTypeFromFile(const String& filePath);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
MediaRecorderTest.java 227 private void removeFile(String filePath) {
228 File fileRemove = new File(filePath);
232 private boolean validateVideo(String filePath, int width, int height) {
234 getOutputVideoProperty(filePath);
240 //removeFile(filePath);
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
Device.java 456 * @param filePath full directory path to file
459 private String getFileName(String filePath) {
460 return new File(filePath).getName();
  /cts/tools/host/src/com/android/cts/
HostConfig.java 636 String filePath = mRoot + File.separator + fileName;
637 writeToFile(zipFile.getInputStream(entry), filePath);
638 filePathList.add(filePath);
640 xmlFilePath = filePath;
648 for (String filePath : filePathList) {
649 deleteFile(filePath);
    [all...]
  /frameworks/base/core/java/android/provider/
MediaStore.java 276 String filePath = c.getString(1);
334 String filePath = null;
408 if (filePath == null) {
414 filePath = c.getString(1);
417 bitmap = ThumbnailUtils.createVideoThumbnail(filePath, kind);
419 bitmap = ThumbnailUtils.createImageThumbnail(filePath, kind);
    [all...]
  /cts/tools/host/test/com/android/cts/
ConsoleTests.java 260 * @param filePath The entry to be added into the zip output stream.
262 private void addEntry(ZipOutputStream out, String filePath) throws IOException {
264 FileInputStream in = new FileInputStream(filePath);
265 out.putNextEntry(new ZipEntry(filePath));
  /frameworks/base/media/java/android/media/
MediaScanner.java     [all...]
AudioService.java     [all...]
  /prebuilt/common/eclipse/
org.eclipse.equinox.common_3.4.0.v20080421-2006.jar 
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/performance/
MediaPlayerPerformance.java 311 public void stressAudioRecord(String filePath) {
319 mRecorder.setOutputFile(filePath);
  /external/webkit/WebKitTools/DumpRenderTree/mac/
EventSendingController.mm 258 NSString *filePath = (NSString *)[jsFilePaths webScriptValueAtIndex:i];
260 NSURL *fileURL = [NSURL fileURLWithPath:filePath];
  /frameworks/base/core/java/android/webkit/
WebViewDatabase.java 108 private static final String CACHE_FILE_PATH_COL = "filepath";
628 final String query = "SELECT filepath, lastmodify, etag, expires, "
752 final String query = "SELECT contentlength, filepath FROM cache ORDER BY expires ASC";
758 pathStr.append("DELETE FROM cache WHERE filepath IN (?");
775 String filePath = cursor.getString(1);
776 statement.bindString(index, filePath);
777 pathList.add(filePath);
807 cursor = mCacheDatabase.rawQuery("SELECT filepath FROM cache",
    [all...]
  /external/webkit/WebKitTools/Scripts/
run-webkit-tests     [all...]
  /cts/tests/tests/content/src/android/content/cts/
ContextWrapperTest.java 388 String filePath;
391 filePath = mContextWrapper.getFilesDir().toString();
392 assertNotNull(filePath);
    [all...]
  /frameworks/base/tools/aapt/
AaptAssets.cpp     [all...]
AaptAssets.h 492 sp<AaptFile> addFile(const String8& filePath,
  /prebuilt/sdk/tools/lib/
dx.jar 
  /libcore/luni/src/main/java/java/io/
File.java 633 private static native String readlink(String filePath);
    [all...]

Completed in 197 milliseconds

1 23 4