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

1 2

  /external/chromium_org/chrome/browser/
process_singleton_startup_lock.cc 43 const base::FilePath& current_directory) {
48 std::make_pair(command_line.argv(), current_directory));
51 return original_callback_.Run(command_line, current_directory);
process_singleton_modal_dialog_lock.cc 58 const base::FilePath& current_directory) {
63 return original_callback_.Run(command_line, current_directory);
process_singleton_modal_dialog_lock.h 54 const base::FilePath& current_directory);
process_singleton_startup_lock.h 48 const base::FilePath& current_directory);
chrome_process_singleton_win_unittest.cc 18 const base::FilePath& current_directory) {
24 const base::FilePath& current_directory) {
process_singleton.h 66 const base::FilePath& current_directory)> NotificationCallback;
process_singleton_win.cc 96 base::FilePath* current_directory) {
134 *current_directory = base::FilePath(msg.substr(first_null + 1,
168 base::FilePath current_directory; local
169 if (!ParseCommandLine(cds, &parsed_command_line, &current_directory)) {
174 *result = notification_callback.Run(parsed_command_line, current_directory) ?
process_singleton_posix_unittest.cc 59 const base::FilePath& current_directory) {
chrome_browser_main.cc 444 const base::FilePath& current_directory) {
475 command_line, current_directory, startup_profile_dir);
    [all...]
  /external/chromium_org/net/disk_cache/simple/
simple_index_file_win.cc 18 const base::FilePath current_directory(FILE_PATH_LITERAL("."));
26 if (file_path == current_directory || file_path == parent_directory)
  /external/chromium_org/base/
native_library_win.cc 29 FilePath current_directory; local
30 if (GetCurrentDirectory(&current_directory)) {
45 SetCurrentDirectory(current_directory);
  /external/chromium_org/apps/
launcher.cc 67 bool DoMakePathAbsolute(const base::FilePath& current_directory,
73 if (current_directory.empty()) {
78 if (!current_directory.IsAbsolute())
81 *file_path = current_directory.Append(*file_path);
146 void LaunchWithRelativePath(const base::FilePath& current_directory) {
152 current_directory));
160 void MakePathAbsolute(const base::FilePath& current_directory) {
166 if (!DoMakePathAbsolute(current_directory, &*it)) {
313 const base::FilePath& current_directory) {
351 launcher->LaunchWithRelativePath(current_directory);
    [all...]
launcher.h 28 // |current_directory| is used to expand any relative paths on the command line.
32 const base::FilePath& current_directory);
  /external/chromium_org/sandbox/win/src/
process_thread_interception.cc 267 LPVOID environment, LPCWSTR current_directory,
272 environment, current_directory, startup_info,
294 wchar_t current_directory[MAX_PATH]; local
295 DWORD result = ::GetCurrentDirectory(MAX_PATH, current_directory);
297 cur_dir = current_directory;
326 LPVOID environment, LPCSTR current_directory,
331 environment, current_directory, startup_info,
372 wchar_t current_directory[MAX_PATH]; local
373 DWORD result = ::GetCurrentDirectory(MAX_PATH, current_directory);
375 cur_dir = current_directory;
    [all...]
process_policy_test.cc 161 wchar_t current_directory[MAX_PATH + 1]; local
162 DWORD ret = ::GetCurrentDirectory(MAX_PATH, current_directory);
168 current_directory[ret] = L'\\';
169 current_directory[ret+1] = L'\0';
175 return ::SetCurrentDirectory(current_directory) ? result4 : SBOX_TEST_FAILED;
296 wchar_t current_directory[MAX_PATH]; local
297 DWORD ret = ::GetCurrentDirectory(MAX_PATH, current_directory);
300 wcscat_s(current_directory, MAX_PATH, L"\\");
302 current_directory));
process_thread_interception.h 76 LPVOID environment, LPCWSTR current_directory, LPSTARTUPINFOW startup_info,
83 LPVOID environment, LPCSTR current_directory, LPSTARTUPINFOA startup_info,
interceptors_64.cc 178 LPVOID environment, LPCWSTR current_directory, LPSTARTUPINFOW startup_info,
185 current_directory, startup_info,
193 LPVOID environment, LPCSTR current_directory, LPSTARTUPINFOA startup_info,
200 current_directory, startup_info,
interceptors_64.h 114 LPVOID environment, LPCWSTR current_directory, LPSTARTUPINFOW startup_info,
122 LPVOID environment, LPCSTR current_directory, LPSTARTUPINFOA startup_info,
  /external/chromium_org/ui/base/dragdrop/
os_exchange_data_unittest.cc 103 base::FilePath current_directory; local
104 ASSERT_TRUE(base::GetCurrentDirectory(&current_directory));
106 data.SetFilename(current_directory);
126 const GURL expected_url(net::FilePathToFileURL(current_directory));
143 EXPECT_EQ(current_directory, actual_path);
  /external/chromium_org/chrome/browser/ui/extensions/
application_launch.h 82 base::FilePath current_directory; member in struct:AppLaunchParams
application_launch.cc 306 profile, extension, params.command_line, params.current_directory);
  /ndk/sources/host-tools/make-3.81/
main.c 907 PATH_VAR (current_directory);
1090 if (getcwd_fs (current_directory, GET_PATH_MAX) == 0)
1092 if (getcwd (current_directory, GET_PATH_MAX) == 0)
1098 error (NILF, "getwd: %s", current_directory);
1100 current_directory[0] = '\0';
1104 directory_before_chdir = xstrdup (current_directory);
    [all...]
  /external/chromium_org/tools/gyp/tools/
pretty_vcproj.py 113 def FixFilenames(filenames, current_directory):
119 os.chdir(current_directory)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/
baselineoptimizer.py 188 current_index, current_directory = self._find_in_fallbackpath(fallback_path, current_result, new_results_by_directory)
196 if current_directory in new_results_by_directory:
197 del new_results_by_directory[current_directory]
  /external/chromium_org/remoting/host/win/
launch_process_with_token.cc 311 LPWSTR current_directory; member in struct:__anon15112::CreateProcessRequest

Completed in 779 milliseconds

1 2