Searched defs:exe (Results 1 - 25 of 36) sorted by relevance

12

/external/chromium_org/chrome/browser/
H A Dbrowser_util_win.cc22 std::wstring exe = exe_path.value(); local
23 std::replace(exe.begin(), exe.end(), '\\', '!');
24 std::transform(exe.begin(), exe.end(), exe.begin(), tolower);
25 exe = L"Global\\" + exe;
28 handle = CreateEvent(NULL, TRUE, TRUE, exe.c_str());
H A Dchrome_browser_main_win.cc72 // Get the breakpad pointer from chrome.exe
135 // work done by setup.exe on uninstall.
196 // setup.exe. In Chrome, these strings are in the locale files.
366 std::wstring exe = exe_path.value(); local
368 if (base::FilePath::CompareEqualIgnoreCase(exe, user_exe_path.value())) {
/external/chromium_org/chrome/test/chromedriver/chrome/
H A Dchrome_finder_unittest.cc28 base::FilePath exe; local
33 &exe));
34 ASSERT_EQ(found, exe);
94 base::FilePath exe; local
99 &exe));
105 base::FilePath exe; local
106 FindChrome(&exe);
/external/lldb/utils/test/
H A Drun-until-faulted.py29 def do_lldb_launch_loop(lldb_command, exe, exe_options):
40 #print "sending 'file %s' command..." % exe
41 lldb.sendline('file %s' % exe)
85 dest='exe',
96 if not opts.exe:
99 exe = opts.exe variable
105 print "executable:", exe
108 do_lldb_launch_loop(lldb_command, exe, exe_options)
/external/valgrind/main/drd/tests/
H A Domp_printf.c9 static void usage(const char* const exe) argument
17 exe);
H A Domp_matinv.c275 static void usage(const char* const exe) argument
283 exe);
/external/chromium_org/chrome_elf/
H A Delf_imports_unittest.cc59 "target was built, instead of chrome_elf_unittests.exe";
86 base::FilePath exe; local
87 ASSERT_TRUE(PathService::Get(base::DIR_EXE, &exe));
88 exe = exe.Append(L"chrome.exe");
89 GetImports(exe, &exe_imports);
91 // Check that chrome.exe has imports.
93 "target was built, instead of chrome_elf_unittests.exe";
95 // Chrome.exe'
[all...]
/external/lldb/examples/python/
H A Ddisasm.py26 exe = sys.argv[1]
32 exe = sys.argv[3] variable
44 print "Creating a target for '%s'" % exe
46 target = debugger.CreateTargetWithFileAndArch (exe, lldb.LLDB_ARCH_DEFAULT)
/external/chromium_org/chrome/browser/service_process/
H A Dservice_process_control_browsertest.cc123 base::FilePath exe; variable
124 PathService::Get(base::DIR_EXE, &exe);
126 exe = exe.DirName().DirName().DirName();
128 exe = exe.Append(chrome::kHelperProcessExecutablePath);
129 // Run chrome instead of browser_tests.exe.
130 EXPECT_TRUE(base::PathExists(exe));
131 command_line->AppendSwitchPath(switches::kBrowserSubprocessPath, exe);
/external/chromium_org/cloud_print/gcp20/prototype/
H A Dgcp20_switches.cc52 base::FilePath exe; local
53 PathService::Get(base::FILE_EXE, &exe);
54 printf("usage: %s [OPTION]...\n\n", exe.BaseName().MaybeAsASCII().c_str());
/external/valgrind/main/coregrind/m_ume/
H A Dmain.c137 Int VG_(do_exec_inner)(const HChar* exe, ExeInfo* info) argument
143 res = VG_(pre_exec_check)(exe, &fd, False/*allow_setuid*/);
150 ret = (*exe_handlers[sr_Res(res)].load_fn)(fd, exe, info);
/external/blktrace/btt/
H A Dproc.c241 char *exe, *p, *next, *exes_save = strdup(exes); local
245 exe = exes_save;
252 pip = __find_process_name(exe);
/external/chromium_org/base/test/
H A Dtest_suite.cc303 base::FilePath exe; local
304 PathService::Get(base::FILE_EXE, &exe);
305 base::FilePath log_filename = exe.ReplaceExtension(FILE_PATH_LITERAL("log"));
/external/chromium_org/sandbox/win/src/
H A Dprocess_policy_test.cc36 // Creates a process with the |exe| and |command| parameter using the
38 sandbox::SboxTestResult CreateProcessHelper(const base::string16& exe, argument
44 if (!exe.empty())
45 exe_name = exe.c_str();
284 base::string16 exe_path = MakeFullPathToSystem32(L"findstr.exe");
304 EXPECT_EQ(SBOX_TEST_DENIED, runner.RunTest(L"Process_RunApp1 calc.exe"));
305 EXPECT_EQ(SBOX_TEST_DENIED, runner.RunTest(L"Process_RunApp2 calc.exe"));
306 EXPECT_EQ(SBOX_TEST_DENIED, runner.RunTest(L"Process_RunApp3 calc.exe"));
307 EXPECT_EQ(SBOX_TEST_DENIED, runner.RunTest(L"Process_RunApp5 calc.exe"));
308 EXPECT_EQ(SBOX_TEST_DENIED, runner.RunTest(L"Process_RunApp6 calc.exe"));
[all...]
H A Dtarget_process.cc46 // Returns the address of the main exe module in memory taking in account
49 HMODULE exe = ::LoadLibrary(exe_name); local
50 if (NULL == exe)
51 return exe;
53 base::win::PEImage pe(exe);
55 ::FreeLibrary(exe);
56 return exe;
62 ::FreeLibrary(exe);
/external/chromium_org/net/disk_cache/blockfile/
H A Dstress_cache.cc56 base::FilePath exe; local
57 PathService::Get(base::FILE_EXE, &exe);
59 base::CommandLine cmdline(exe);
/external/chromium_org/net/tools/crash_cache/
H A Dcrash_cache.cc47 base::FilePath exe; local
48 PathService::Get(base::FILE_EXE, &exe);
50 base::CommandLine cmdline(exe);
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dtrace.c31 char exe[50], fname[512]; local
33 os_snprintf(exe, sizeof(exe) - 1, "/proc/%u/exe", getpid());
34 len = readlink(exe, fname, sizeof(fname) - 1);
/external/wpa_supplicant_8/src/utils/
H A Dtrace.c31 char exe[50], fname[512]; local
33 os_snprintf(exe, sizeof(exe) - 1, "/proc/%u/exe", getpid());
34 len = readlink(exe, fname, sizeof(fname) - 1);
/external/wpa_supplicant_8/wpa_supplicant/
H A Dmain_winsvc.c15 * for debugging, with 'wpasvc.exe app' or as a Windows service. Service need
16 * to be registered with 'wpasvc.exe reg <full path to wpasvc.exe>'. After
20 * 'wpasvc.exe unreg'.
254 static int register_service(const TCHAR *exe) argument
270 exe, NULL, NULL, NULL, NULL, NULL);
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dtrace.c31 char exe[50], fname[512]; local
33 os_snprintf(exe, sizeof(exe) - 1, "/proc/%u/exe", getpid());
34 len = readlink(exe, fname, sizeof(fname) - 1);
/external/chromium_org/chrome/installer/util/
H A Duser_experiment.cc109 // Launches setup.exe (located at |setup_path|) with |cmd_line|.
117 // Propagate --verbose-logging to the invoked setup.exe.
146 // For System level installs, setup.exe lives in the system temp, which
150 // can launch |exe| later on. This function should only be called if the
152 bool FixDACLsForExecute(const base::FilePath& exe) { argument
153 // The general strategy to is to add an ACE to the exe DACL the quick
160 if (!::GetFileSecurityW(exe.value().c_str(), DACL_SECURITY_INFORMATION,
189 bool rv = ::SetFileSecurityW(exe.value().c_str(), DACL_SECURITY_INFORMATION,
204 // Convey to the invoked setup.exe that it's operating on a system-level
208 // Propagate --verbose-logging to the invoked setup.exe
[all...]
/external/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDynamicLoaderPOSIXDYLD.cpp452 ObjectFile *exe = module->GetObjectFile(); local
453 Address file_entry = exe->GetEntryPointAddress();
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-antlr.jar ... .apache.tools.ant.taskdefs.Execute exe protected boolean is272 () ClassNotFoundException e org.apache.tools ...
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dsymbol-elf.c970 static int elf_read_maps(Elf *elf, bool exe, mapfn_t mapfn, void *data) argument
985 if (exe) {
1002 int file__read_maps(int fd, bool exe, mapfn_t mapfn, void *data, argument
1015 err = elf_read_maps(elf, exe, mapfn, data);

Completed in 948 milliseconds

12