/system/connectivity/shill/ |
certificate_file.cc | 31 using base::FilePath; 50 : root_directory_(FilePath(kDefaultRootDirectory)) { 61 FilePath CertificateFile::CreatePEMFromStrings( 67 return FilePath(); 117 FilePath CertificateFile::WriteFile(const string& output_data) { 122 return FilePath(); 129 return FilePath(); 134 output_file_ = FilePath(); 137 FilePath output_file; 140 return FilePath(); [all...] |
file_reader_unittest.cc | 27 using base::FilePath; 35 void VerifyReadLines(const FilePath& path, const vector<string>& lines) { 53 EXPECT_FALSE(reader_.Open(FilePath("a_nonexistent_file"))); 59 FilePath path; 78 FilePath path;
|
/system/core/crash_reporter/ |
user_collector.h | 133 bool CopyOffProcFiles(pid_t pid, const base::FilePath &container_dir); 140 bool ValidateProcFiles(const base::FilePath &container_dir) const; 147 ErrorType ValidateCoreFile(const base::FilePath &core_path) const; 154 base::FilePath *crash_file_path, 156 bool CopyStdinToCoreFile(const base::FilePath &core_path); 157 bool RunCoreToMinidump(const base::FilePath &core_path, 158 const base::FilePath &procfs_directory, 159 const base::FilePath &minidump_path, 160 const base::FilePath &temp_directory); 162 const base::FilePath &container_dir [all...] |
udev_collector_test.cc | 27 using base::FilePath; 63 int GetNumFiles(const FilePath& path, const std::string& file_pattern) { 67 for (FilePath file_path = enumerator.Next(); 93 FilePath(base::StringPrintf("%s/%s", 96 FilePath data_path = 97 FilePath(base::StringPrintf("%s/%s/data", 106 FilePath(base::StringPrintf("%s/%s/failing_device", 109 FilePath uevent_path = 110 FilePath(base::StringPrintf("%s/%s/failing_device/uevent", 129 FilePath log_config_path [all...] |
/system/update_engine/update_manager/ |
real_config_provider.cc | 44 store.Load(base::FilePath(root_prefix_ + kConfigFilePath)); 46 if (store.Load(base::FilePath(root_prefix_ + 51 store.Load(base::FilePath(root_prefix_ + kConfigFilePath));
|
/external/pdfium/core/src/fpdfdoc/ |
doc_basic.cpp | 271 static CFX_WideString FILESPEC_DecodeFileName(const CFX_WideStringC& filepath) { 272 if (filepath.GetLength() <= 1) { 276 if (filepath.Left(sizeof("/Mac") - 1) == CFX_WideStringC(L"/Mac")) { 277 return ChangeSlashToPlatform(filepath.GetPtr() + 1); 279 return ChangeSlashToPlatform(filepath.GetPtr()); 281 if (filepath.GetAt(0) != '/') { 282 return ChangeSlashToPlatform(filepath.GetPtr()); 284 if (filepath.GetAt(1) == '/') { 285 return ChangeSlashToPlatform(filepath.GetPtr() + 1); 287 if (filepath.GetAt(2) == '/') [all...] |
/dalvik/dx/src/com/android/dx/command/dump/ |
ClassDumper.java | 35 * @param filePath the file path for the class, excluding any base 40 String filePath, Args args) { 42 new ClassDumper(bytes, out, filePath, args); 51 String filePath, Args args) { 52 super(bytes, out, filePath, args);
|
/external/skia/tools/copyright/ |
fileparser.py | 11 def CreateParser(filepath): 12 """Returns a Parser as appropriate for the file at this filepath. 14 if (filepath.endswith('.cpp') or 15 filepath.endswith('.h') or 16 filepath.endswith('.c')):
|
/packages/apps/Camera2/src/com/android/camera/session/ |
StackSaverImpl.java | 64 String filePath = 66 Log.d(TAG, "Saving using stack image saver: " + filePath); 67 File outputImagePath = new File(filePath); 73 mGpsLocation, imageOrientation, fileLength, filePath, width, height, 80 filePath));
|
/prebuilts/go/darwin-x86/src/cmd/cover/ |
cover_test.go | 14 "path/filepath" 28 testMain = filepath.Join(testdata, "main.go") 29 testTest = filepath.Join(testdata, "test.go") 30 coverInput = filepath.Join(testdata, "test_line.go") 31 coverOutput = filepath.Join(testdata, "test_cover.go")
|
/prebuilts/go/linux-x86/src/cmd/cover/ |
cover_test.go | 14 "path/filepath" 28 testMain = filepath.Join(testdata, "main.go") 29 testTest = filepath.Join(testdata, "test.go") 30 coverInput = filepath.Join(testdata, "test_line.go") 31 coverOutput = filepath.Join(testdata, "test_cover.go")
|
/external/libchrome/base/files/ |
file_enumerator_posix.cc | 28 FilePath FileEnumerator::FileInfo::GetName() const { 42 FileEnumerator::FileEnumerator(const FilePath& root_path, 54 FileEnumerator::FileEnumerator(const FilePath& root_path, 57 const FilePath::StringType& pattern) 69 pattern_ = FilePath::StringType(); 76 FilePath FileEnumerator::Next() { 82 return FilePath(); 96 FilePath full_path = root_path_.Append(i->filename_); 122 const FilePath& source, bool show_links) { 138 info.filename_ = FilePath(dent->d_name) [all...] |
scoped_temp_dir_unittest.cc | 16 FilePath test_path; 35 FilePath path = dir.Take(); 52 FilePath test_path; 58 FilePath tmp_dir; 67 FilePath base_path; 71 FilePath test_path;
|
/external/pdfium/core/src/fpdfapi/fpdf_parser/ |
fpdf_parser_fdf.cpp | 121 const CFX_WideString& filepath) { 123 if (filepath.GetLength() > 1 && filepath[1] == ':') { 125 result += filepath[0]; 126 if (filepath[2] != '\\') { 129 result += ChangeSlash(filepath.c_str() + 2); 130 } else if (filepath.GetLength() > 1 && filepath[0] == '\\' && 131 filepath[1] == '\\') { 132 result = ChangeSlash(filepath.c_str() + 1) [all...] |
/external/autotest/client/site_tests/ui_SystemTray/ |
ui_SystemTray.py | 40 def capture_screenshot(self, filepath): 55 @param filepath: path, fullpath to where the screenshot will be saved to 63 graphics_utils.take_screenshot_crop(filepath, box) 68 image_name = os.path.splitext(filepath)[0] 80 graphics_utils.take_screenshot_crop(filepath, box) 82 diff = comparer.compare(filepath, temp_file_path) 93 self.draw_image_mask(filepath, self.mask_points)
|
/prebuilts/go/darwin-x86/src/path/filepath/ |
path_windows_test.go | 11 "path/filepath" 24 err = os.Symlink("target", filepath.Join(tmpdir, "symlink")) 65 if cd := filepath.Clean(d); filepath.VolumeName(cd) != "" || 70 dd := filepath.Join(tmp, d) 79 fn, data := filepath.Join(dd, cmdfile), []byte("@echo "+d+"\r\n") 107 err = os.Remove(filepath.Join(tmp, d, cmdfile))
|
/prebuilts/go/linux-x86/src/path/filepath/ |
path_windows_test.go | 11 "path/filepath" 24 err = os.Symlink("target", filepath.Join(tmpdir, "symlink")) 65 if cd := filepath.Clean(d); filepath.VolumeName(cd) != "" || 70 dd := filepath.Join(tmp, d) 79 fn, data := filepath.Join(dd, cmdfile), []byte("@echo "+d+"\r\n") 107 err = os.Remove(filepath.Join(tmp, d, cmdfile))
|
/external/clang/include/clang/Tooling/ |
ReplacementsYaml.h | 36 : FilePath(""), Offset(0), Length(0), ReplacementText("") {} 39 : FilePath(R.getFilePath()), Offset(R.getOffset()), 43 return clang::tooling::Replacement(FilePath, Offset, Length, 47 std::string FilePath; 56 Io.mapRequired("FilePath", Keys->FilePath);
|
/external/libchrome/base/ |
file_version_info_unittest.cc | 19 using base::FilePath; 24 FilePath GetTestDataPath() { 25 FilePath path; 60 FilePath dll_path = GetTestDataPath(); 101 FilePath dll_path = GetTestDataPath(); 114 FilePath dll_path = GetTestDataPath();
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/ |
EclipseTestCollector.java | 54 String filePath = entry.getPath().replace(".class", ""); 56 Class<?> testClass = getClass(filePath, expectedPackage); 70 //sLogger.log(Level.INFO, "Could not load class " + filePath); 107 * @param filePath - path of class in bundle 111 protected Class<?> getClass(String filePath, String expectedPackage) throws ClassNotFoundException { 112 String dotPath = filePath.replace('/', '.');
|
/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/autotest/client/site_tests/ui_SettingsPage/ |
ui_SettingsPage.py | 21 def capture_screenshot(self, filepath): 30 @param filepath: string, complete path to save screenshot to. 45 image_util.WritePngFile(screenshot, filepath)
|
/external/dbus-binding-generator/chromeos-dbus-bindings/ |
method_name_generator_unittest.cc | 44 base::FilePath CreateInputFile(const string& contents) { 45 base::FilePath path; 61 base::FilePath output_path = temp_dir_.path().Append("output.h");
|
/external/libgdx/backends/gdx-backend-robovm/src/com/badlogic/gdx/backends/iosrobovm/objectal/ |
OALSimpleAudio.java | 41 public native ALBuffer preloadEffect (String filePath); 44 public native boolean unloadEffect (String filePath); 47 public native ALSource playEffect (String filePath, float volume, float pitch, float pan, boolean loop);
|
/external/webrtc/talk/app/webrtc/objc/ |
RTCLogging.mm | 56 NSString* RTCFileName(const char* filePath) { 58 [[NSString alloc] initWithBytesNoCopy:const_cast<char*>(filePath) 59 length:strlen(filePath)
|