Home
last modified time | relevance | path

Searched refs:fullpath (Results 1 – 25 of 45) sorted by relevance

12

/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/
Ds3put138 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/
Durbnum.c66 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/
Dkernel_CrosECSysfs.py39 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/
Dfiletransfermsg.c211 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/
Dsubmit.py34 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/
Dcontrol_file_getter.py159 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/
Ddir.c100 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/
Dimport_screenshot_capturer.py50 fullpath = os.path.join(self.destination_dir, filename)
55 graphics_utils.take_screenshot_crop_by_height(fullpath,
60 return fullpath
Dchameleon_screenshot_capturer.py97 fullpath = os.path.join(self.dest_dir, filename)
103 img.crop(box).save(fullpath)
105 return fullpath
/external/autotest/client/tests/unixbench/
Dunixbench.patch42 - 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/
Dgraphics_utils.py341 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/
Dtestcfg.py49 fullpath = os.path.join(dirname, filename)
50 relpath = fullpath[len(self.root) + 1 : -3]
/external/autotest/client/site_tests/kernel_CrosECSysfsAccel/
Dkernel_CrosECSysfsAccel.py36 fullpath = os.path.join(self.sysfs_accel_path, filename)
39 content = utils.read_file(fullpath)
/external/pdfium/core/src/fxge/android/
Dfpf_skiafontmgr.cpp429 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/
Dtestcfg.py55 fullpath = os.path.join(dirname, filename)
56 relpath = fullpath[len(self.root) + 1 : -3]
/external/autotest/utils/
Dtest_importer.py388 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/
Dtestcfg.py79 fullpath = os.path.join(dirname, filename)
80 relpath = fullpath[len(self.testroot) + 1 : -3]
/external/v8/test/message/
Dtestcfg.py55 fullpath = os.path.join(dirname, filename)
56 relpath = fullpath[len(self.root) + 1 : -3]
/external/valgrind/memcheck/tests/
Dbadfree3.vgtest2 vgopts: -q --fullpath-after=${PWD}/
Dvarinfo5.vgtest2 vgopts: --fullpath-after=${PWD}/ --read-var-info=yes --read-inline-info=yes -q
/external/v8/test/webkit/
Dtestcfg.py58 fullpath = os.path.join(dirname, filename)
59 relpath = fullpath[len(self.root) + 1 : -3]
/external/v8/test/test262/
Dtestcfg.py119 fullpath = os.path.join(dirname, filename)
120 relpath = fullpath[len(self.testroot) + 1 : -3]
/external/chromium-trace/catapult/third_party/Paste/paste/auth/
Ddigest.py137 fullpath = url_quote(SCRIPT_NAME(environ)) + url_quote(PATH_INFO(environ))
151 assert authpath.split("?", 1)[0] in fullpath
/external/sl4a/Docs/
Dgenerate_api_reference_md.pl35 my $fullpath = $File::Find::name;
/external/clang/utils/
DFindSpecRefs823 fullpath = os.path.join(dirpath, filename)
824 references.extend(list(scanFile(fullpath, filename)))

12