| /frameworks/av/media/mtp/ |
| MtpServer.cpp | 743 const char* filePath = (const char *)pathBuf; 745 mfr.fd = open(filePath, O_RDONLY); 808 const char* filePath = (const char *)pathBuf; 810 mfr.fd = open(filePath, O_RDONLY); [all...] |
| /external/chromium_org/ui/file_manager/file_manager/foreground/js/media/ |
| player_testapi.js | 81 * @param {string} filePath File path. 83 loadVideo: function(filePath) { 84 var url = util.makeFilesystemUrl(filePath);
|
| /packages/apps/Mms/src/com/android/mms/ui/ |
| UriImage.java | 140 String filePath; 142 filePath = c.getString(c.getColumnIndexOrThrow(Part.FILENAME)); 143 if (TextUtils.isEmpty(filePath)) { 144 filePath = c.getString( 150 filePath = uri.getPath(); 178 mPath = filePath;
|
| /external/lzma/CPP/7zip/UI/Common/ |
| Extract.cpp | 38 UString filePath;
39 RINOK(arc.GetItemPath(i, filePath));
42 if (!wildcardCensor.CheckPath(filePath, !isFolder))
|
| EnumDirItems.cpp | 116 const UString &filePath = filePaths[i];
118 const UString phyPath = phyPrefix + filePath;
125 int delimiter = filePath.ReverseFind((wchar_t)kDirDelimiter);
130 phyPrefixCur = filePath.Left(delimiter + 1);
|
| /frameworks/base/core/java/android/os/ |
| FileUtils.java | 377 String filePath = file.getAbsolutePath(); 379 if (dirPath.equals(filePath)) { 386 return filePath.startsWith(dirPath);
|
| /sdk/eclipse/plugins/com.android.ide.eclipse.traceview/src/com/android/ide/eclipse/traceview/editors/ |
| TraceviewEditor.java | 133 IPath filePath = dialog.getResult(); 134 if (filePath == null) { 139 IFile file = workspace.getRoot().getFile(filePath);
|
| /external/chromium_org/content/test/ |
| test_webkit_platform_support.h | 66 const base::FilePath& file_system_root() const { 80 const blink::WebString& filePath);
|
| /external/chromium_org/third_party/WebKit/Source/modules/filesystem/ |
| DOMFileSystemBase.h | 97 static bool crackFileSystemURL(const KURL&, FileSystemType&, String& filePath);
|
| /external/mdnsresponder/mDNSPosix/ |
| Responder.c | 502 static mStatus RegisterServicesInFile(const char *filePath) 505 FILE * fp = fopen(filePath, "r"); 512 fprintf(stderr, "Parsing %s for services\n", filePath); 602 fprintf(stderr, "%s: Error reading service file %s\n", gProgramName, filePath);
|
| /frameworks/testing/support/src/android/support/test/runner/ |
| AndroidJUnitRunner.java | 505 * @param filePath path to test file contaitnig full package names of test classes and 509 private void parseTestClassesFromFile(String filePath, TestRequestBuilder testRequestBuilder) { 514 br = new BufferedReader(new FileReader(new File(filePath))); 519 Log.e(LOG_TAG, String.format("File not found: %s", filePath), e); 522 String.format("Something went wrong reading %s, ignoring file", filePath), e);
|
| /packages/apps/Gallery2/src/com/android/gallery3d/data/ |
| DecodeUtils.java | 101 JobContext jc, String filePath, Options options, int targetSize, int type) { 104 fis = new FileInputStream(filePath); 218 JobContext jc, String filePath, boolean shareable) { 220 return BitmapRegionDecoder.newInstance(filePath, shareable);
|
| /external/pdfium/fpdfsdk/include/ |
| fpdfformfill.h | 115 * filePath - The string buffer to receive the file path. Can be NULL.
118 * Number of bytes the filePath consumes, including trailing zeros.
120 * The filePath should be always input in local encoding.
126 int (*Doc_getFilePath)(struct _IPDF_JsPlatform* pThis, void* filePath, int length);
216 * filePath - Pointer to the data buffer to receive the file path.Can be NULL.
219 * Number of bytes the filePath consumes, including trailing zeros.
221 * The filePath shoule be always input in local encoding.
223 int (*Field_browse)(struct _IPDF_JsPlatform* pThis,void* filePath, int length);
[all...] |
| /external/qemu/android/avd/ |
| info.c | 719 const char* filePath, 721 int ret = fileData_initFromFile(data, filePath); 723 D("Error reading property file %s: %s", filePath, strerror(-ret)); 725 D("Read property file at %s", filePath); 763 char* filePath = _avdInfo_getContentOrSdkFilePath(i, propFileName); 764 if (!filePath) { 769 _avdInfo_readPropertyFile(i, filePath, data); 770 free(filePath); [all...] |
| /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/common/ |
| BitmapUtils.java | 190 public static Bitmap createVideoThumbnail(String filePath) { 200 method.invoke(instance, filePath);
|
| /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/ |
| BitmapUtils.java | 190 public static Bitmap createVideoThumbnail(String filePath) { 200 method.invoke(instance, filePath);
|
| /packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/common/ |
| BitmapUtils.java | 190 public static Bitmap createVideoThumbnail(String filePath) { 200 method.invoke(instance, filePath);
|
| /packages/inputmethods/LatinIME/native/jni/ |
| com_android_inputmethod_latin_BinaryDictionary.cpp | 99 jstring filePath) { 102 const jsize filePathUtf8Length = env->GetStringUTFLength(filePath); 104 env->GetStringUTFRegion(filePath, 0, env->GetStringLength(filePath), filePathChars); 117 jstring filePath) { 120 const jsize filePathUtf8Length = env->GetStringUTFLength(filePath); 122 env->GetStringUTFRegion(filePath, 0, env->GetStringLength(filePath), filePathChars); [all...] |
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
| configHelpSourceEdit.py | 11 def __init__(self, parent, title, menuItem='', filePath=''): 30 self.path.set(filePath)
|
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
| configHelpSourceEdit.py | 11 def __init__(self, parent, title, menuItem='', filePath=''): 30 self.path.set(filePath)
|
| /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/ |
| ExtractStringInputPage.java | 281 String filePath = sLastResFilePath.get(projPath); 283 mResFileCombo.setText(filePath != null ? filePath : DEFAULT_RES_FILE_PATH); 521 for (String filePath : filePaths) { 522 mResFileCombo.add(filePath);
|
| /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/ |
| gUnitExecutor.java | 610 String filePath = testInput.input; 611 File testInputFile = new File(filePath); 614 testInputFile = new File(this.testsuiteDir, filePath); 615 if ( testInputFile.exists() ) filePath = testInputFile.getCanonicalPath(); 618 testInputFile = new File("."+File.separator+grammarInfo.getGrammarPackage().replace(".", File.separator), filePath); 619 if ( testInputFile.exists() ) filePath = testInputFile.getCanonicalPath(); 622 input = new ANTLRFileStream(filePath);
|
| /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/ |
| IsolatedFileSystem.js | 233 var filePath = this._path + "/" + path; 235 filePath += "/" + nameCandidate; 236 console.error(errorMessage + " when getting content for file '" + (filePath) + "'");
|
| /packages/apps/Gallery/src/com/android/camera/ |
| ImageManager.java | 206 String filePath = directory + "/" + filename; 217 degree[0] = getExifOrientation(filePath); 239 values.put(Images.Media.DATA, filePath); 249 public static int getExifOrientation(String filepath) { 253 exif = new ExifInterface(filepath);
|
| /sdk/eventanalyzer/src/com/android/eventanalyzer/ |
| EventAnalyzer.java | 119 // get the filepath and break. 203 * @param filePath the location of the file. 206 private void parseTextLogFile(String filePath) throws IOException { 209 String tagFile = filePath + TAG_FILE_EXT; 224 new InputStreamReader(new FileInputStream(filePath)));
|