HomeSort by relevance Sort by last modified time
    Searched refs:fullpath (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/autotest/client/site_tests/kernel_CrosECSysfs/
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/autotest/client/cros/video/
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
chameleon_screenshot_capturer.py 93 @returns a fullpath to the image just captured.
97 fullpath = os.path.join(self.dest_dir, filename)
103 img.crop(box).save(fullpath)
105 return fullpath
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/services/
submit.py 34 def get_key_name(self, fullpath, prefix):
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/client/profilers/powertop/src/
urbnum.c 66 char fullpath[4096]; local
73 sprintf(fullpath, "%s/power/active_duration", path);
74 file = fopen(fullpath, "r");
80 sprintf(fullpath, "%s/power/connected_duration", path);
81 file = fopen(fullpath, "r");
100 sprintf(fullpath, "%s/product", path);
101 file = fopen(fullpath, "r");
107 sprintf(fullpath, "%s/manufacturer", path);
108 file = fopen(fullpath, "r");
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/
s3put 138 def get_key_name(fullpath, prefix, key_prefix):
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):
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/server/cros/dynamic_suite/
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/v8/build/
get_syzygy_binaries.py 205 fullpath = os.path.join(output_dir, relpath)
206 fulldir = os.path.dirname(fullpath)
208 if os.path.exists(fullpath):
210 if os.path.isdir(fullpath):
211 raise Exception('Directory exists where file expected: %s' % fullpath)
217 actual_md5 = _Md5(fullpath)
219 raise Exception('File has local changes: %s' % fullpath)
222 _LOGGER.debug('Deleting file "%s".', fullpath)
225 os.unlink(fullpath)
317 fullpath = os.path.normpath(os.path.join(fulldir, entry.filename)
    [all...]
  /external/libvncserver/libvncserver/tightvnc-filetransfer/
filetransfermsg.c 211 char fullpath[PATH_MAX]; local
212 fullpath[0] = 0;
214 strncpy_s(fullpath, PATH_MAX, basePath, basePathLength);
215 strncpy_s(fullpath + basePathLength, PATH_MAX - basePathLength, winFindData.cFileName, (int)strlen(winFindData.cFileName));
220 " list failed\n", __FILE__, __FUNCTION__, fullpath);
229 "list failed\n", __FILE__, __FUNCTION__, fullpath);
279 char fullpath[PATH_MAX]; local
281 memset(fullpath, 0, PATH_MAX);
283 strcpy(fullpath, path);
285 strcat(fullpath, "/");
    [all...]
  /external/fsck_msdos/
dir.c 100 static char *fullpath(struct dosDirEntry *);
170 fullpath(struct dosDirEntry *dir) function
407 fullpath(dir), dir->size, physicalSize);
419 fullpath(dir));
591 fullpath(dir));
717 fullpath(dir), 2);
756 fullpath(&dirent), 0);
772 fullpath(&dirent));
798 fullpath(&dirent));
802 fullpath(&dirent)
    [all...]
  /external/autotest/client/site_tests/kernel_CrosECSysfsAccel/
kernel_CrosECSysfsAccel.py 36 fullpath = os.path.join(self.sysfs_accel_path, filename)
39 content = utils.read_file(fullpath)
  /external/v8/test/intl/
testcfg.py 52 fullpath = os.path.join(dirname, filename)
53 relpath = fullpath[len(self.root) + 1 : -3]
  /libcore/ojluni/src/main/java/sun/net/www/protocol/ftp/
FtpURLConnection.java 101 String fullpath; field in class:FtpURLConnection
363 fullpath = pathname + "/" + (filename != null ? filename : "");
365 fullpath = filename;
472 String ftype = guessContentTypeFromName(fullpath);
482 cd(fullpath);
492 throw new FileNotFoundException(fullpath);
494 throw new FileNotFoundException(fullpath);
  /external/v8/test/message/
testcfg.py 55 fullpath = os.path.join(dirname, filename)
56 relpath = fullpath[len(self.root) + 1 : -3]
  /external/v8/test/mjsunit/
testcfg.py 55 fullpath = os.path.join(dirname, filename)
56 relpath = fullpath[len(self.root) + 1 : -3]
  /external/v8/test/mozilla/
testcfg.py 79 fullpath = os.path.join(dirname, filename)
80 relpath = fullpath[len(self.testroot) + 1 : -3]
  /external/autotest/client/cros/graphics/
graphics_utils.py 341 def take_screenshot_crop_by_height(fullpath, final_height, x_offset_pixels,
347 @param fullpath: path, fullpath of the file that will become the image file.
362 cropped.save(fullpath)
363 return fullpath
366 def take_screenshot_crop_x(fullpath, box=None):
369 @param fullpath: path, full path to save the image to.
382 xsystem('%s %s' % (cmd, fullpath))
391 def take_screenshot_crop(fullpath, box=None, crtc_id=None):
394 @param fullpath: path, full path to save the image to
    [all...]
  /external/chromium-trace/catapult/third_party/Paste/paste/auth/
digest.py 137 fullpath = url_quote(SCRIPT_NAME(environ)) + url_quote(PATH_INFO(environ))
151 assert authpath.split("?", 1)[0] in fullpath
  /external/v8/test/webkit/
testcfg.py 58 fullpath = os.path.join(dirname, filename)
59 relpath = fullpath[len(self.root) + 1 : -3]
  /external/autotest/utils/
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/pdfium/core/src/fxge/android/
fpf_skiafontmgr.cpp 429 CFX_ByteString fullpath = path; local
430 fullpath += "/";
431 fullpath += filename;
433 ScanPath(fullpath);
435 ScanFile(fullpath);
  /external/sl4a/Docs/
generate_api_reference_md.pl 35 my $fullpath = $File::Find::name;
  /external/v8/test/test262/
testcfg.py 123 fullpath = os.path.join(dirname, filename)
124 relpath = fullpath[len(self.testroot) + 1 : -3]
  /external/valgrind/none/tests/
cmdline1.stdout.exp 63 --fullpath-after= (with nothing after the '=')
65 --fullpath-after=string like --fullpath-after=, but only show the
  /external/pdfium/core/src/fxge/ge/
fx_ge_fontmap.cpp 1355 CFX_ByteString fullpath = path; local
    [all...]

Completed in 2769 milliseconds

1 2 3