/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/ |
D | s3put | 138 def get_key_name(fullpath, prefix, key_prefix): argument 139 if fullpath.startswith(prefix): 140 key_name = fullpath[len(prefix):] 142 key_name = fullpath 232 def singlepart_upload(bucket, key_name, fullpath, *kargs, **kwargs): argument 237 k.set_contents_from_filename(fullpath, *kargs, **kwargs) 402 fullpath = os.path.abspath(path) 403 key_name = get_key_name(fullpath, prefix, key_prefix) 404 files_to_check_for_upload.append(fullpath) 411 for fullpath in files_to_check_for_upload: [all …]
|
/external/autotest/client/profilers/powertop/src/ |
D | urbnum.c | 66 char fullpath[4096]; in update_urbnum() local 73 sprintf(fullpath, "%s/power/active_duration", path); in update_urbnum() 74 file = fopen(fullpath, "r"); in update_urbnum() 80 sprintf(fullpath, "%s/power/connected_duration", path); in update_urbnum() 81 file = fopen(fullpath, "r"); in update_urbnum() 100 sprintf(fullpath, "%s/product", path); in update_urbnum() 101 file = fopen(fullpath, "r"); in update_urbnum() 107 sprintf(fullpath, "%s/manufacturer", path); in update_urbnum() 108 file = fopen(fullpath, "r"); in update_urbnum()
|
/external/autotest/client/site_tests/kernel_CrosECSysfs/ |
D | kernel_CrosECSysfs.py | 39 fullpath = os.path.join(self.sysfs_path, filename) 40 return self._read_file(fullpath) 49 fullpath = os.path.join(self.sysfs_path, filename) 50 content = self._read_file(fullpath) 53 raise error.TestFail("no '%s' field in %s" % (field, fullpath))
|
/external/libvncserver/libvncserver/tightvnc-filetransfer/ |
D | filetransfermsg.c | 211 char fullpath[PATH_MAX]; in CreateFileListInfo() local 212 fullpath[0] = 0; in CreateFileListInfo() 214 strncpy_s(fullpath, PATH_MAX, basePath, basePathLength); in CreateFileListInfo() 215 …strncpy_s(fullpath + basePathLength, PATH_MAX - basePathLength, winFindData.cFileName, (int)strlen… in CreateFileListInfo() 220 " list failed\n", __FILE__, __FUNCTION__, fullpath); in CreateFileListInfo() 229 "list failed\n", __FILE__, __FUNCTION__, fullpath); in CreateFileListInfo() 279 char fullpath[PATH_MAX]; in CreateFileListInfo() local 281 memset(fullpath, 0, PATH_MAX); in CreateFileListInfo() 283 strcpy(fullpath, path); in CreateFileListInfo() 285 strcat(fullpath, "/"); in CreateFileListInfo() [all …]
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/services/ |
D | submit.py | 34 def get_key_name(self, fullpath, prefix): argument 35 key_name = fullpath[len(prefix):] 77 fullpath = os.path.join(root, file) 79 print('Submitting %s' % fullpath) 80 self.submit_file(fullpath, metadata, cb, num_cb, prefix)
|
/external/autotest/server/cros/dynamic_suite/ |
D | control_file_getter.py | 159 fullpath = os.path.join(directory, name) 160 if os.path.isfile(fullpath): 163 self._files.append(fullpath) 164 elif os.path.isdir(fullpath): 165 directories.append(fullpath)
|
/external/fsck_msdos/ |
D | dir.c | 100 static char *fullpath(struct dosDirEntry *); 170 fullpath(struct dosDirEntry *dir) in fullpath() function 407 fullpath(dir), dir->size, physicalSize); in checksize() 419 fullpath(dir)); in checksize() 591 fullpath(dir)); in readDosDirSection() 717 fullpath(dir), 2); in readDosDirSection() 756 fullpath(&dirent), 0); in readDosDirSection() 772 fullpath(&dirent)); in readDosDirSection() 798 fullpath(&dirent)); in readDosDirSection() 802 fullpath(&dirent), in readDosDirSection() [all …]
|
/external/autotest/client/cros/video/ |
D | import_screenshot_capturer.py | 50 fullpath = os.path.join(self.destination_dir, filename) 55 graphics_utils.take_screenshot_crop_by_height(fullpath, 60 return fullpath
|
D | chameleon_screenshot_capturer.py | 97 fullpath = os.path.join(self.dest_dir, filename) 103 img.crop(box).save(fullpath) 105 return fullpath
|
/external/autotest/client/tests/unixbench/ |
D | unixbench.patch | 42 - execl(fullpath, fullpath, "0", dur_str, count_str, start_str, 0); 43 + execl(fullpath, fullpath, "0", dur_str, count_str, start_str, (char *)0);
|
/external/autotest/client/cros/graphics/ |
D | graphics_utils.py | 341 def take_screenshot_crop_by_height(fullpath, final_height, x_offset_pixels, argument 362 cropped.save(fullpath) 363 return fullpath 366 def take_screenshot_crop_x(fullpath, box=None): argument 382 xsystem('%s %s' % (cmd, fullpath)) 391 def take_screenshot_crop(fullpath, box=None, crtc_id=None): argument 398 return take_screenshot_crop_x(fullpath, box) 405 image.save(fullpath) 406 return fullpath
|
/external/v8/test/intl/ |
D | testcfg.py | 49 fullpath = os.path.join(dirname, filename) 50 relpath = fullpath[len(self.root) + 1 : -3]
|
/external/autotest/client/site_tests/kernel_CrosECSysfsAccel/ |
D | kernel_CrosECSysfsAccel.py | 36 fullpath = os.path.join(self.sysfs_accel_path, filename) 39 content = utils.read_file(fullpath)
|
/external/pdfium/core/src/fxge/android/ |
D | fpf_skiafontmgr.cpp | 429 CFX_ByteString fullpath = path; in ScanPath() local 430 fullpath += "/"; in ScanPath() 431 fullpath += filename; in ScanPath() 433 ScanPath(fullpath); in ScanPath() 435 ScanFile(fullpath); in ScanPath()
|
/external/v8/test/mjsunit/ |
D | testcfg.py | 55 fullpath = os.path.join(dirname, filename) 56 relpath = fullpath[len(self.root) + 1 : -3]
|
/external/autotest/utils/ |
D | test_importer.py | 388 fullpath = os.path.join(directory, name) 389 if os.path.isfile(fullpath): 392 files.append(fullpath) 393 elif os.path.isdir(fullpath): 394 directories.append(fullpath)
|
/external/v8/test/mozilla/ |
D | testcfg.py | 79 fullpath = os.path.join(dirname, filename) 80 relpath = fullpath[len(self.testroot) + 1 : -3]
|
/external/v8/test/message/ |
D | testcfg.py | 55 fullpath = os.path.join(dirname, filename) 56 relpath = fullpath[len(self.root) + 1 : -3]
|
/external/valgrind/memcheck/tests/ |
D | badfree3.vgtest | 2 vgopts: -q --fullpath-after=${PWD}/
|
D | varinfo5.vgtest | 2 vgopts: --fullpath-after=${PWD}/ --read-var-info=yes --read-inline-info=yes -q
|
/external/v8/test/webkit/ |
D | testcfg.py | 58 fullpath = os.path.join(dirname, filename) 59 relpath = fullpath[len(self.root) + 1 : -3]
|
/external/v8/test/test262/ |
D | testcfg.py | 119 fullpath = os.path.join(dirname, filename) 120 relpath = fullpath[len(self.testroot) + 1 : -3]
|
/external/chromium-trace/catapult/third_party/Paste/paste/auth/ |
D | digest.py | 137 fullpath = url_quote(SCRIPT_NAME(environ)) + url_quote(PATH_INFO(environ)) 151 assert authpath.split("?", 1)[0] in fullpath
|
/external/sl4a/Docs/ |
D | generate_api_reference_md.pl | 35 my $fullpath = $File::Find::name;
|
/external/clang/utils/ |
D | FindSpecRefs | 823 fullpath = os.path.join(dirpath, filename) 824 references.extend(list(scanFile(fullpath, filename)))
|