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

1 2

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_bdist_wininst.py 25 exe_file = cmd.get_exe_bytes()
26 self.assertTrue(len(exe_file) > 10)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_bdist_wininst.py 25 exe_file = cmd.get_exe_bytes()
26 self.assertTrue(len(exe_file) > 10)
  /external/chromium_org/tools/gyp/test/win/
gyptest-link-generate-manifest.py 61 exe_file = test.built_file_path(filename, chdir=CHDIR)
63 test.must_not_exist(exe_file + '.manifest')
64 manifest = extract_manifest(exe_file, 1)
68 manifest = extract_manifest(exe_file, 1)
71 test.must_exist(exe_file + '.manifest')
72 manifest = test.read(exe_file + '.manifest')
74 test.fail_test(extract_manifest(exe_file, 1))
gyptest-link-update-manifest.py 86 exe_file = test.built_file_path('test_update_manifest.exe', chdir=CHDIR)
87 return extract_manifest(exe_file, 1)
  /external/chromium_org/tools/win/split_link/
install_split_link.py 27 exe_file = os.path.join(path, program)
30 if IsExe(exe_file):
31 return exe_file
  /external/lldb/utils/test/
llvm-mc-shell.py 24 exe_file = os.path.join(path, program)
25 if is_exe(exe_file):
26 return exe_file
run-until-faulted.py 24 exe_file = os.path.join(path, program)
25 if is_exe(exe_file):
26 return exe_file
disasm.py 25 exe_file = os.path.join(path, program)
26 if is_exe(exe_file):
27 return exe_file
  /external/chromium_org/base/process/
process_iterator_win.cc 37 return _wcsicmp(executable_name_.c_str(), entry().exe_file()) == 0 &&
process_iterator.h 37 const wchar_t* exe_file() const { return szExeFile; } function in struct:base::ProcessEntry
67 const char* exe_file() const { return exe_file_.c_str(); }
process_iterator_freebsd.cc 120 if (executable_name_ != entry().exe_file())
process_iterator_linux.cc 132 if (executable_name_ != entry().exe_file())
process_iterator_mac.cc 131 return (executable_name_ == entry().exe_file() &&
process_iterator_openbsd.cc 124 return (executable_name_ == entry().exe_file() &&
  /external/lldb/source/Plugins/Platform/Linux/
PlatformLinux.cpp 149 PlatformLinux::ResolveExecutable (const FileSpec &exe_file,
158 FileSpec resolved_exe_file (exe_file);
162 // If we have "ls" as the exe_file, resolve the executable location based on
166 exe_file.GetPath(exe_path, sizeof(exe_path));
177 exe_file.GetPath(exe_path, sizeof(exe_path));
185 error = m_remote_platform_sp->ResolveExecutable (exe_file,
240 exe_file.GetPath().c_str(),
274 exe_file.GetPath().c_str(),
PlatformLinux.h 61 ResolveExecutable (const FileSpec &exe_file,
  /external/lldb/source/Plugins/Platform/FreeBSD/
PlatformFreeBSD.cpp 158 PlatformFreeBSD::ResolveExecutable (const FileSpec &exe_file,
167 FileSpec resolved_exe_file (exe_file);
171 // If we have "ls" as the exe_file, resolve the executable location based on
175 exe_file.GetPath(exe_path, sizeof(exe_path));
186 exe_file.GetPath(exe_path, sizeof(exe_path));
194 error = m_remote_platform_sp->ResolveExecutable (exe_file,
211 exe_file.GetPath(exe_path, sizeof(exe_path));
233 exe_file.GetPath().c_str(),
268 exe_file.GetPath().c_str(),
277 exe_file.GetPath().c_str())
    [all...]
PlatformFreeBSD.h 75 ResolveExecutable (const lldb_private::FileSpec &exe_file,
  /external/lldb/source/Plugins/Platform/MacOSX/
PlatformiOSSimulator.cpp 174 PlatformiOSSimulator::ResolveExecutable (const FileSpec &exe_file,
182 FileSpec resolved_exe_file (exe_file);
184 // If we have "ls" as the exe_file, resolve the executable loation based on
239 exe_file.GetPath().c_str(),
247 exe_file.GetPath().c_str());
PlatformiOSSimulator.h 68 ResolveExecutable (const lldb_private::FileSpec &exe_file,
PlatformDarwinKernel.cpp 624 FileSpec exe_file = kext_bundle_path; local
625 Host::ResolveExecutableInBundle (exe_file);
626 if (exe_file.Exists())
628 ModuleSpec exe_spec (exe_file);
635 ModuleSP module_sp (new Module (exe_file, arch));
PlatformDarwin.cpp 126 PlatformDarwin::ResolveExecutable (const FileSpec &exe_file,
135 FileSpec resolved_exe_file (exe_file);
139 // If we have "ls" as the exe_file, resolve the executable loation based on
143 exe_file.GetPath (exe_path, sizeof(exe_path));
157 exe_file.GetPath (exe_path, sizeof(exe_path));
165 error = m_remote_platform_sp->ResolveExecutable (exe_file,
200 exe_file.GetPath().c_str(),
234 exe_file.GetPath().c_str(),
    [all...]
PlatformDarwin.h 31 ResolveExecutable (const lldb_private::FileSpec &exe_file,
  /external/lldb/source/Plugins/Platform/gdb-server/
PlatformRemoteGDBServer.h 67 ResolveExecutable (const lldb_private::FileSpec &exe_file,
  /external/chromium_org/chrome/installer/launcher_support/
chrome_launcher_support.cc 113 // Returns the path to an installed |exe_file| (e.g. chrome.exe, app_host.exe)
117 const wchar_t* exe_file) {
120 // down from |exe_file|. Move up two levels (plus one to drop the file
123 setup_exe_path.DirName().DirName().DirName().Append(exe_file));
127 // |exe_file| in the version directory
128 exe_path = setup_exe_path.DirName().DirName().Append(exe_file);

Completed in 186 milliseconds

1 2