| /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/ |
| FileSystemWorkspaceBinding.js | 245 var filePath = this._filePathForPath(path); 246 this._fileSystem.requestFileContent(filePath, callback); 255 var filePath = this._filePathForPath(path); 256 this._fileSystem.requestMetadata(filePath, callback); 274 var filePath = this._filePathForPath(path); 275 this._fileSystem.setFileContent(filePath, newContent, callback.bind(this, "")); 293 var filePath = this._filePathForPath(path); 294 this._fileSystem.renameFile(filePath, newName, innerCallback.bind(this)); 309 var slash = filePath.lastIndexOf("/"); 310 var parentPath = filePath.substring(0, slash) [all...] |
| /cts/tests/tests/mediastress/src/android/mediastress/cts/ |
| CodecTest.java | 80 public static int getDuration(String filePath) { 81 Log.v(TAG, "getDuration - " + filePath); 84 mp.setDataSource(filePath); 96 public static boolean getCurrentPosition(String filePath) { 97 Log.v(TAG, "GetCurrentPosition - " + filePath); 103 mp.setDataSource(filePath); 126 public static boolean seekTo(String filePath) { 127 Log.v(TAG, "seekTo " + filePath); 131 mp.setDataSource(filePath); 150 public static boolean setLooping(String filePath) { [all...] |
| /external/chromium_org/third_party/WebKit/Source/web/tests/ |
| WebImageTest.cpp | 48 String filePath = Platform::current()->unitTestSupport()->webKitRootDir(); 49 filePath.append("/Source/web/tests/data/"); 50 filePath.append(fileName); 52 return Platform::current()->unitTestSupport()->readFromFile(filePath);
|
| /external/chromium_org/third_party/WebKit/public/platform/ |
| WebUnitTestSupport.h | 42 virtual void registerMockedURL(const WebURL&, const WebURLResponse&, const WebString& filePath) { }
|
| /frameworks/base/core/jni/ |
| android_content_res_ObbScanner.cpp | 42 const char* filePath = env->GetStringUTFChars(file, NULL); 45 if (!obb->readFrom(filePath)) { 46 env->ReleaseStringUTFChars(file, filePath); 51 env->ReleaseStringUTFChars(file, filePath);
|
| /device/generic/goldfish/camera/ |
| EmulatedCameraHotplugThread.cpp | 185 String8 filePath = getFilePath(cameraId); 191 int newStatus = readFile(filePath); 228 String8 filePath = getFilePath(cameraId); 231 open(filePath.string(), O_WRONLY | O_CREAT | O_TRUNC, 235 __FUNCTION__, filePath.string(), strerror(errno), errno); 242 __FUNCTION__, filePath.string(), strerror(errno), errno); 250 int EmulatedCameraHotplugThread::getCameraId(String8 filePath) const { 257 if (camPath == filePath) { 338 int EmulatedCameraHotplugThread::readFile(String8 filePath) const { 341 open(filePath.string(), O_RDONLY, /*mode*/0)) [all...] |
| /external/clang/include/clang/ARCMigrate/ |
| FileRemapper.h | 47 bool initFromFile(StringRef filePath, DiagnosticsEngine &Diag, 55 void remap(StringRef filePath, llvm::MemoryBuffer *memBuf); 65 const FileEntry *getOriginalFile(StringRef filePath);
|
| /external/qemu/android/filesystems/ |
| ext4_utils.cpp | 71 int android_createEmptyExt4Image(const char *filePath, 74 int ret = ::make_ext4fs(filePath, size, mountpoint, NULL); 76 EXT4_ERROR << "Failed to create ext4 image at: " << filePath;
|
| /frameworks/av/media/mtp/ |
| MtpStorage.cpp | 35 MtpStorage::MtpStorage(MtpStorageID id, const char* filePath, 39 mFilePath(filePath), 46 ALOGV("MtpStorage id: %d path: %s\n", id, filePath);
|
| MtpStorage.h | 40 MtpStorage(MtpStorageID id, const char* filePath,
|
| /packages/providers/DownloadProvider/tests/permission/src/com/android/providers/downloads/permission/tests/ |
| DownloadProviderPermissionsTest.java | 54 String filePath = "/cache/this-should-not-exist.txt"; 55 FileOutputStream strm = new FileOutputStream(filePath); 59 fail("Was able to create and write to " + filePath);
|
| /external/qemu/android/kernel/ |
| kernel_utils.cpp | 59 bool getFileDescription(void* opaque, const char* filePath, String* text) { 60 if (!filePath) { 65 if (!path_exists(filePath)) { 66 KERNEL_ERROR << "Kernel file doesn't exist: " << filePath; 78 command += filePath;
|
| /dalvik/dx/src/com/android/dx/cf/direct/ |
| DirectClassFile.java | 81 private final String filePath; 170 * @param filePath {@code non-null;} the file path for the class, 177 public DirectClassFile(ByteArray bytes, String filePath, 183 if (filePath == null) { 184 throw new NullPointerException("filePath == null"); 187 this.filePath = filePath; 197 * @param filePath {@code non-null;} the file path for the class, 204 public DirectClassFile(byte[] bytes, String filePath, 206 this(new ByteArray(bytes), filePath, strictParse) [all...] |
| /external/chromium_org/third_party/WebKit/Source/platform/exported/ |
| WebHTTPBody.cpp | 78 result.filePath.reset(); 91 result.filePath = element.m_filename; 123 void WebHTTPBody::appendFile(const WebString& filePath) 126 m_private->appendFile(filePath); 129 void WebHTTPBody::appendFileRange(const WebString& filePath, long long fileStart, long long fileLength, double modificationTime) 132 m_private->appendFileRange(filePath, fileStart, fileLength, modificationTime);
|
| WebBlobData.cpp | 66 result.filePath.reset(); 79 result.filePath = item.path;
|
| /cts/tests/tests/content/src/android/content/cts/ |
| ImageCaptureActivity.java | 90 Uri filePath = clipData.getItemAt(0).getUri(); 91 if (filePath == null) { 97 return new File(filePath.getPath());
|
| /external/lzma/CPP/7zip/UI/Common/ |
| OpenArchive.h | 70 const UString &filePath,
78 const UString &filePath,
83 const UString &filePath,
|
| /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/utils/ |
| mmapped_buffer.cpp | 75 char filePath[filePathBufferSize]; 76 const int filePathLength = snprintf(filePath, filePathBufferSize, "%s%s", dirPath, 81 return openBuffer(filePath, isUpdatable);
|
| /external/qemu/android/utils/ |
| file_data.h | 52 // at |filePath|. On success, return 0 and initializes |fileData| properly. 54 int fileData_initFromFile(FileData* fileData, const char* filePath);
|
| ini.h | 37 IniFile* iniFile_newFromFile( const char* filePath); 42 int iniFile_saveToFile( IniFile* f, const char* filePath ); 47 int iniFile_saveToFileClean( IniFile* f, const char* filepath );
|
| /packages/inputmethods/LatinIME/native/jni/ |
| com_android_inputmethod_latin_BinaryDictionaryUtils.cpp | 33 jstring filePath, jlong dictVersion, jstring locale, jobjectArray attributeKeyStringArray, 35 const jsize filePathUtf8Length = env->GetStringUTFLength(filePath); 37 env->GetStringUTFRegion(filePath, 0, env->GetStringLength(filePath), filePathChars);
|
| /sdk/dumpeventlog/src/com/android/dumpeventlog/ |
| DumpEventLog.java | 46 public LogWriter(String filePath) throws IOException { 47 mOutputStream = new FileOutputStream(filePath); 76 System.out.println("Usage: dumpeventlog <device s/n> <filepath>"); 138 private static void grabLogFrom(IDevice device, String filePath) throws IOException, 140 LogWriter writer = new LogWriter(filePath);
|
| /dalvik/dx/src/com/android/dx/command/dump/ |
| DotDumper.java | 45 private final String filePath; 50 static void dump(byte[] bytes, String filePath, Args args) { 51 new DotDumper(bytes, filePath, args).run(); 54 DotDumper(byte[] bytes, String filePath, Args args) { 56 this.filePath = filePath; 69 classFile = new DirectClassFile(ba, filePath, strictParse); 75 new DirectClassFile(ba, filePath, strictParse);
|
| /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/power/ |
| MediaPlayerPowerTest.java | 49 public void audioPlayback(String filePath) { 52 mp.setDataSource(filePath);
|
| /packages/apps/UnifiedEmail/src/com/android/emailcommon/internet/ |
| BinaryTempFileBody.java | 48 * @param filePath The file containing the data to be stored on disk temporarily 50 public void setFile(String filePath) { 51 mFile = new File(filePath);
|