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

1 2

  /external/chromium_org/base/process/
process_handle_linux.cc 22 FilePath exe_name; local
23 if (!file_util::ReadSymbolicLink(stat_file, &exe_name)) {
27 return exe_name;
  /external/valgrind/main/coregrind/m_ume/
main.c 68 VG_(pre_exec_check)(const HChar* exe_name, Int* out_fd, Bool allow_setuid)
77 res = VG_(open)(exe_name, VKI_O_RDONLY, 0);
84 ret = VG_(check_executable)(&is_setuid, (HChar*)exe_name, allow_setuid);
91 exe_name);
200 static Int do_exec_shell_followup(Int ret, HChar* exe_name, ExeInfo* info)
216 if (is_binary_file(exe_name)) {
217 VG_(fmsg)("%s: cannot execute binary file\n", exe_name);
227 info->argv[0] = (char *)exe_name;
234 exe_name, info->interp_name, VG_(strerror)(ret));
243 res = VG_(stat)(exe_name, &st)
    [all...]
  /external/chromium_org/chrome/test/pyautolib/
pyauto_paths.py 42 exe_name = 'chromedriver'
44 exe_name += '.exe'
48 exe = os.path.join(dir, exe_name)
  /external/chromium_org/remoting/tools/
keygen.py 25 def locate_executable(exe_name):
27 exe_path = os.path.join(_SCRIPT_PATH, path, exe_name)
34 raise Exception("Could not locate executable '%s'" % exe_name)
  /external/chromium_org/sandbox/win/src/
process_thread_dispatcher.cc 33 std::wstring exe_name; local
40 exe_name = cmd_line.substr(1, pos - 1);
47 exe_name = cmd_line;
49 exe_name = cmd_line.substr(0, pos);
53 return exe_name;
212 std::wstring exe_name;
214 exe_name = *name;
216 exe_name = GetPathFromCmdLine(*cmd_line);
218 if (IsPathRelative(exe_name)) {
219 if (!ConvertToAbsolutePath(*cur_dir, name->empty(), &exe_name)) {
    [all...]
interception_unittest.cc 79 wchar_t exe_name[MAX_PATH]; local
80 ASSERT_NE(0u, GetModuleFileName(NULL, exe_name, MAX_PATH - 1));
83 ::GetModuleHandle(exe_name));
166 wchar_t exe_name[MAX_PATH]; local
167 ASSERT_NE(0u, GetModuleFileName(NULL, exe_name, MAX_PATH - 1));
170 ::GetModuleHandle(exe_name));
process_policy_test.cc 43 const wchar_t *exe_name = NULL; local
45 exe_name = exe.c_str();
53 if (!::CreateProcessW(exe_name, const_cast<wchar_t*>(cmd_line), NULL, NULL,
77 exe_name ? base::SysWideToMultiByte(exe_name, CP_UTF8).c_str() : NULL,
target_process.cc 48 void* GetBaseAddress(const wchar_t* exe_name, void* entry_point) {
49 HMODULE exe = ::LoadLibrary(exe_name);
  /external/valgrind/main/coregrind/
pub_core_ume.h 81 extern SysRes VG_(pre_exec_check)(const HChar* exe_name, Int* out_fd,
  /external/chromium_org/ppapi/native_client/tests/nacl_browser/inbrowser_test_runner/
nacl.scons 19 % env.ProgramNameForNmf(exe_name))
20 for exe_name in exe_list]
23 nmf_names = ['%s.nmf' % exe_name for exe_name in exe_list]
  /external/oprofile/daemon/liblegacy/
opd_parse_proc.c 97 char exe_name[20]; local
103 strcpy(exe_name, mapsfile);
111 strcat(exe_name, "/exe");
113 if (!realpath(exe_name, image_name))
115 strcpy(image_name, exe_name);
  /external/chromium_org/sandbox/win/sandbox_poc/
sandbox.cc 77 wchar_t exe_name[MAX_PATH]; local
78 if (0 == GetModuleFileName(NULL, exe_name, MAX_PATH - 1)) {
88 exe_name,
  /external/chromium_org/tools/python/google/
platform_utils_linux.py 79 exe_name = "apache2"
87 os.path.join(self._UnixRoot(), "usr", "sbin", exe_name),
platform_utils_mac.py 79 exe_name = "httpd"
87 os.path.join(self._UnixRoot(), "usr", "sbin", exe_name),
platform_utils_win.py 111 exe_name = "httpd"
114 exe_name = "httpd2"
120 os.path.join(self._CygwinRoot(), "usr", "sbin", exe_name)),
  /external/chromium_org/tools/win/link_limiter/
build_link_limiter.py 88 exe_name = build('limiter.cc')
91 shutil.copyfile(exe_name, newpath)
limiter.cc 60 static DWORD RunExe(const tstring& exe_name) {
71 cmdline = exe_name;
73 cmdline = exe_name + cmdline.substr(first_space);
  /external/oprofile/pp/
oparchive.cpp 126 string exe_name = it->image; local
133 exe_name = classes.extra_found_images.strip_path_prefix(real_exe_name);
139 string exe_archive_file = options::outdirectory + exe_name;
142 if (it->error == image_not_found && is_prefix(exe_name, "anon "))
  /external/chromium_org/chrome/browser/
process_singleton_browsertest.cc 194 base::FilePath::StringType exe_name = program.BaseName().value(); local
195 while (base::GetProcessCount(exe_name, &process_tree_filter) > 0 &&
197 base::KillProcesses(exe_name, kExitCode, &process_tree_filter);
  /external/valgrind/main/coregrind/m_initimg/
initimg-darwin.c 65 HChar* exe_name; local
70 exe_name = ML_(find_executable)( VG_(args_the_exename) );
72 if (!exe_name) {
78 ret = VG_(do_exec)(exe_name, info);
84 res = VG_(open)(exe_name, VKI_O_RDONLY, VKI_S_IRUSR);
initimg-linux.c 74 HChar* exe_name; local
79 exe_name = ML_(find_executable)( VG_(args_the_exename) );
81 if (!exe_name) {
87 ret = VG_(do_exec)(exe_name, info);
89 VG_(printf)("valgrind: could not execute '%s'\n", exe_name);
97 res = VG_(open)(exe_name, VKI_O_RDONLY, VKI_S_IRUSR);
    [all...]
  /external/chromium_org/ppapi/native_client/
chrome_main.scons 312 def GenerateSimpleManifestStaticLink(env, dest_file, exe_name):
315 nmf_data = {'program': dict((arch, {'url': '%s_%s.nexe' % (exe_name, arch)})
321 # Scons does not track the dependency of dest_file on exe_name or on
328 def GenerateSimpleManifest(env, dest_file, exe_name):
330 return GenerateSimpleManifestStaticLink(env, dest_file, exe_name)
333 env, '%s.static' % dest_file, exe_name)
336 '${STAGING_DIR}/%s.nexe' % env.ProgramNameForNmf(exe_name))
  /external/chromium_org/chrome/installer/mini_installer/
mini_installer.cc 310 const wchar_t* exe_name = GetNameFromPathExt(full_exe_path.get(), len); local
311 if (exe_name == NULL)
315 if (!StrEndsWith(configuration.program(), exe_name)) {
320 const wchar_t* tmp = SearchStringI(configuration.command_line(), exe_name);
  /external/chromium/base/
process_util_linux.cc 147 FilePath exe_name; local
148 if (!file_util::ReadSymbolicLink(stat_file, &exe_name)) {
152 return exe_name;
  /external/chromium_org/chrome_frame/test/
chrome_frame_test_utils.cc 151 std::wstring FormatCommandForApp(const std::wstring& exe_name,
155 exe_name.c_str()));

Completed in 740 milliseconds

1 2