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

1 2 3 4

  /external/libmojo/third_party/catapult/devil/devil/android/
device_blacklist.py 16 self._path = path
25 if not os.path.exists(self._path):
28 with open(self._path, 'r') as f:
32 self._path, blacklist)
43 with open(self._path, 'w') as f:
60 ','.join(devices), self._path, reason)
68 logging.info('Resetting blacklist %s', self._path)
70 if os.path.exists(self._path):
71 os.remove(self._path)
  /external/chromium-trace/catapult/devil/devil/android/
device_blacklist.py 18 self._path = path
28 if not os.path.exists(self._path):
32 with open(self._path, 'r') as f:
36 os.remove(self._path)
40 self._path, blacklist)
52 with open(self._path, 'w') as f:
69 ','.join(devices), self._path, reason)
77 logger.info('Resetting blacklist %s', self._path)
79 if os.path.exists(self._path):
80 os.remove(self._path)
    [all...]
  /external/parameter-framework/upstream/utility/windows/
DynamicLibrary.cpp 40 DynamicLibrary::DynamicLibrary(const std::string &path) : _path(osSanitizePathName(path))
44 HMODULE module = LoadLibrary(_path.c_str());
50 throw std::runtime_error(_path + ": cannot open shared object file.");
69 throw std::runtime_error(_path + ": undefined symbol: " + symbol);
  /external/lzma/CPP/Windows/
FileDir.h 54 FString _path; member in class:NWindows::NFile::NDir::CTempFile
59 const FString &GetPath() const { return _path; }
69 FString _path; member in class:NWindows::NFile::NDir::CTempDir
73 const FString &GetPath() const { return _path; }
82 FString _path; member in class:NWindows::NFile::NDir::CCurrentDirRestorer
88 GetCurrentDir(_path);
96 if (s != _path)
97 SetCurrentDir(_path);
FileDir.cpp 327 bool CreateComplexDir(CFSTR _path)
332 DWORD attrib = NFind::GetFileAttrib(_path);
339 if (IsDriveRootPath_SuperAllowed(_path))
342 unsigned prefixSize = GetRootPrefixSize(_path);
348 FString path = _path;
632 if (!CreateTempFile(prefix, false, _path, outFile))
645 if (!CreateTempFile(tempPath + namePrefix, true, _path, outFile))
655 _mustBeDeleted = !DeleteFileAlways(_path);
666 return MyMoveFile(_path, name);
676 if (!CreateTempFile(tempPath + prefix, true, _path, NULL))
    [all...]
  /external/autotest/server/cros/ap_configurators/
pyauto_utils.py 31 _path = '' variable in class:ExistingPathReplacer
44 self._path = path
45 if os.path.exists(self._path):
47 assert os.path.isdir(self._path), '%s is not a directory' % self._path
49 assert os.path.isfile(self._path), '%s is not a file' % self._path
51 self._backup_basename = os.path.basename(self._path)
52 self._backup_dir = tempfile.mkdtemp(dir=os.path.dirname(self._path),
54 logging.info('Backing up %s in %s' % (self._path, self._backup_dir)
    [all...]
  /tools/repohooks/rh/
results.py 23 _path = os.path.realpath(__file__ + '/../..') variable
24 if sys.path[0] != _path:
25 sys.path.insert(0, _path)
26 del _path
signals.py 24 _path = os.path.realpath(__file__ + '/../..') variable
25 if sys.path[0] != _path:
26 sys.path.insert(0, _path)
27 del _path
shell.py 23 _path = os.path.realpath(__file__ + '/../..') variable
24 if sys.path[0] != _path:
25 sys.path.insert(0, _path)
26 del _path
shell_unittest.py 26 _path = os.path.realpath(__file__ + '/../..') variable
27 if sys.path[0] != _path:
28 sys.path.insert(0, _path)
29 del _path
config_unittest.py 27 _path = os.path.realpath(__file__ + '/../..') variable
28 if sys.path[0] != _path:
29 sys.path.insert(0, _path)
30 del _path
terminal.py 26 _path = os.path.realpath(__file__ + '/../..') variable
27 if sys.path[0] != _path:
28 sys.path.insert(0, _path)
29 del _path
  /external/parameter-framework/upstream/utility/posix/
DynamicLibrary.cpp 40 DynamicLibrary::DynamicLibrary(const std::string &path) : _path(osSanitizePathName(path))
42 _handle = dlopen(_path.c_str(), RTLD_LAZY);
  /external/parameter-framework/upstream/utility/
DynamicLibrary.hpp 85 const std::string _path; member in class:DynamicLibrary
  /tools/repohooks/tools/
clang-format.py 25 _path = os.path.realpath(__file__ + '/../..') variable
26 if sys.path[0] != _path:
27 sys.path.insert(0, _path)
28 del _path
google-java-format.py 26 _path = os.path.realpath(__file__ + '/../..') variable
27 if sys.path[0] != _path:
28 sys.path.insert(0, _path)
29 del _path
  /external/syslinux/gpxe/src/image/
embedded.c 28 #define EMBED( _index, _path, _name ) \
33 ".incbin \"" _path "\"\n\t" \
43 #define EMBED( _index, _path, _name ) { \
  /development/testrunner/
make_tree.py 34 self._path = os.path.join(parent._GetPath(), name)
36 self._path = ""
58 return self._path
63 path = os.path.join(android_build.GetTop(), self._path)
75 make_list.append(os.path.join(self._path, "Android.mk"))
  /external/lzma/CPP/7zip/UI/GUI/
ExtractDialog.cpp 188 _path.Attach(GetItem(IDC_EXTRACT_PATH));
209 _path.SetText(pathPrefix);
213 _path.AddString(_info.Paths[i]);
218 _path.SetCurSel(0);
220 _path.SetCurSel(-1);
278 _path.GetText(currentPath);
284 _path.SetCurSel(-1);
286 _path.SetText(resultPath);
352 _path.GetText(s);
356 int currentItem = _path.GetCurSel();
    [all...]
ExtractDialog.h 37 NWindows::NControl::CDialogChildControl _path; member in class:CExtractDialog
39 NWindows::NControl::CComboBox _path;
  /external/ltp/android/tools/
check_success_build.py 30 _path: string, path of module
36 _path = None variable in class:Module
62 self._path = self._header[1]
83 print " Module build failed: " + os.path.basename(self._path)
100 os.path.basename(self._path))
115 "assuming build success: " + self._path
129 return os.path.isfile(self._output_dir + self._path)
  /external/skia/tools/skpbench/
skpbench.py 67 import _adb_path as _path
68 _path.init(FLAGS.device_serial)
70 import _os_path as _path
169 pngfile = _path.join(FLAGS.write_path, self.config,
170 _path.basename(self.skp) + '.png')
278 skps = _path.find_skps(FLAGS.skps)
  /external/autotest/client/cros/
device_jail_utils.py 80 self._path = match.group(1)
86 self._path = match.group(1)
110 dev_file_wrapper[0] = OSFile(self._path, os.O_RDWR)
157 '--remove={0}'.format(self._path)])
  /external/libyuv/files/
setup_links.py 149 self._path = path
158 log('Planning to remove %s: %s', filesystem_type, self._path)
160 log('Removing %s: %s', filesystem_type, self._path)
163 os.remove(self._path)
170 self._path = path
174 logging.warn('Planning to remove directory: %s', self._path)
176 logging.warn('Removing directory: %s', self._path)
182 subprocess.check_call(['rd', '/q', '/s', self._path], shell=True)
184 shutil.rmtree(self._path)
191 self._path = pat
    [all...]
  /external/webrtc/
setup_links.py 170 self._path = path
179 log('Planning to remove %s: %s', filesystem_type, self._path)
181 log('Removing %s: %s', filesystem_type, self._path)
184 os.remove(self._path)
191 self._path = path
195 logging.warn('Planning to remove directory: %s', self._path)
197 logging.warn('Removing directory: %s', self._path)
203 subprocess.check_call(['rd', '/q', '/s', self._path], shell=True)
205 shutil.rmtree(self._path)
212 self._path = pat
    [all...]

Completed in 502 milliseconds

1 2 3 4