| /external/chromium/net/url_request/ |
| url_request.h | 297 void AppendFileRangeToUpload(const FilePath& file_path, 299 void AppendFileToUpload(const FilePath& file_path) { 300 AppendFileRangeToUpload(file_path, 0, kuint64max);
|
| url_request.cc | 90 void URLRequest::AppendFileRangeToUpload(const FilePath& file_path, 92 DCHECK(file_path.value().length() > 0 && length > 0); 95 upload_->AppendFileRange(file_path, offset, length);
|
| url_request_unittest.cc | 935 FilePath file_path; local 936 PathService::Get(base::DIR_SOURCE_ROOT, &file_path); 937 file_path = file_path.Append(FILE_PATH_LITERAL("net")); 938 file_path = file_path.Append(FILE_PATH_LITERAL("data")); 940 TestURLRequest req(net::FilePathToFileURL(file_path), &d); [all...] |
| /development/scripts/app_engine_server/ |
| memcache_zipserve.py | 342 def GetFromStore(self, file_path): 352 file_path: the file that we're looking for 361 archive_name = self.MapFileToArchive(file_path) 372 resp_data = zip_archive.read(file_path) 377 logging.info('%s read from %s', file_path, archive_name) 411 def MapFileToArchive(self, file_path): 423 file_path: the file to be mapped to an archive 432 if self.CompareFilenames(target[1], file_path) >= 0:
|
| /external/gtest/test/ |
| gtest-filepath_test.cc | 520 FilePath file_path(FilePath::GenerateUniqueFileName(testdata_path_, 522 EXPECT_STREQ(unique_file0_.c_str(), file_path.c_str()); 523 EXPECT_FALSE(file_path.FileOrDirectoryExists()); // file not there 526 EXPECT_FALSE(file_path.FileOrDirectoryExists()); // file still not there 527 CreateTextFile(file_path.c_str()); 528 EXPECT_TRUE(file_path.FileOrDirectoryExists());
|
| /external/protobuf/gtest/test/ |
| gtest-filepath_test.cc | 494 FilePath file_path(FilePath::GenerateUniqueFileName(testdata_path_, 496 EXPECT_STREQ(unique_file0_.c_str(), file_path.c_str()); 497 EXPECT_FALSE(file_path.FileOrDirectoryExists()); // file not there 500 EXPECT_FALSE(file_path.FileOrDirectoryExists()); // file still not there 501 CreateTextFile(file_path.c_str()); 502 EXPECT_TRUE(file_path.FileOrDirectoryExists());
|
| /bionic/libc/tools/ |
| bionic_utils.py | 228 def parse_file(self, file_path): 229 D2("parse_file: %s" % file_path) 230 fp = open(file_path)
|
| /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/port/ |
| base.py | 294 file_path = os.path.join(*path) 295 if not os.path.exists(file_path): 330 for root, dirs, files in os.walk(file_path, topdown=False): 340 remove_with_retry(os.rmdir, file_path)
|
| /external/webkit/WebKitTools/Scripts/webkitpy/style/processors/ |
| cpp_unittest.py | 714 file_path = 'mydir/foo.cpp' 717 self.process_file_data(file_path, 'cpp', [all...] |
| cpp.py | [all...] |
| /external/v8/test/mjsunit/ |
| testcfg.py | 122 file_path = join(self.root, reduce(join, test[1:], "") + ".js") 123 result.append(MjsunitTestCase(test, file_path, mode, self.context, self))
|
| /development/host/windows/usb/legacy/driver/ |
| android_usb_device_object.h | 382 @param file_path[in] Path to the file that being opened.
385 UCHAR GetPipeIndexFromFileName(PUNICODE_STRING file_path);
|
| /external/chromium/net/base/ |
| net_util.h | 49 // valid file URL. On failure, *file_path will be empty. 50 bool FileURLToFilePath(const GURL& url, FilePath* file_path);
|
| /external/webkit/WebKitTools/Scripts/webkitpy/ |
| scm_unittest.py | 56 def write_into_file_at_path(file_path, contents): 57 file = open(file_path, 'w') 61 def read_from_path(file_path): 62 file = open(file_path, 'r')
|
| /external/srec/srec/test/SRecTest/src/ |
| SRecTest.c | 1997 LCHAR file_path [P_PATH_MAX]; local 2061 LCHAR file_path [P_PATH_MAX]; local [all...] |
| /external/bluetooth/glib/gio/xdgmime/ |
| xdgmime.c | 298 /* Checks file_path to make sure it has the same mtime as last time it was 305 xdg_check_file (const char *file_path, 311 if (stat (file_path, &st) == 0) 320 if (! strcmp (list->directory_name, file_path))
|
| /external/chromium/base/third_party/xdg_mime/ |
| xdgmime.c | 298 /* Checks file_path to make sure it has the same mtime as last time it was 305 xdg_check_file (const char *file_path, 311 if (stat (file_path, &st) == 0) 320 if (! strcmp (list->directory_name, file_path))
|
| /bionic/libc/kernel/tools/ |
| utils.py | 175 def parse_file(self, file_path): 176 fp = open(file_path)
|
| /external/chromium/base/ |
| file_util_posix.cc | 29 #include "base/file_path.h" 451 bool GetFileInfo(const FilePath& file_path, FileInfo* results) { 453 if (CallStat(file_path.value().c_str(), &file_info) != 0)
|
| base.scons | 363 'file_path.cc', 364 'file_path.h',
|
| file_util_win.cc | 14 #include "base/file_path.h" 573 bool GetFileInfo(const FilePath& file_path, FileInfo* results) { 575 if (!GetFileAttributesEx(file_path.ToWStringHack().c_str(),
|
| /external/srec/srec/test/SRecTestAudio/src/ |
| SRecTestAudio.c | 1756 LCHAR file_path [P_PATH_MAX]; local [all...] |
| /external/chromium/ |
| Android.mk | 27 base/file_path.cc \
|