Searched refs:run_path (Results 1 - 7 of 7) sorted by relevance
/third_party/pulseaudio/src/daemon/ |
H A D | main.c | 182 char *run_path = pa_sprintf_malloc("%s" PA_PATH_SEP "run", pa_win32_get_system_appdata()); in change_user() local 189 mkdir(run_path); in change_user() 202 if (SetNamedSecurityInfo(run_path, SE_FILE_OBJECT, DACL_SECURITY_INFORMATION | PROTECTED_DACL_SECURITY_INFORMATION, NULL, NULL, acl, NULL) != ERROR_SUCCESS) { in change_user() 238 pa_set_env("HOME", run_path); in change_user() 240 pa_set_env("PULSE_RUNTIME_PATH", run_path); in change_user() 246 pa_xfree(run_path); in change_user()
|
H A D | ohos_pa_main.c | 185 char *run_path = pa_sprintf_malloc("%s" PA_PATH_SEP "run", pa_win32_get_system_appdata()); in change_user() local 192 mkdir(run_path); in change_user() 205 if (SetNamedSecurityInfo(run_path, SE_FILE_OBJECT, DACL_SECURITY_INFORMATION | PROTECTED_DACL_SECURITY_INFORMATION, NULL, NULL, acl, NULL) != ERROR_SUCCESS) { in change_user() 241 pa_set_env("HOME", run_path); in change_user() 243 pa_set_env("PULSE_RUNTIME_PATH", run_path); in change_user() 249 pa_xfree(run_path); in change_user()
|
/third_party/python/Lib/test/ |
H A D | test_runpy.py | 22 from runpy import _run_code, _run_module_code, run_module, run_path namespace 69 # Issue #15230 (run_path not handling run_name correctly) highlighted a 594 """Unit tests for runpy.run_path""" 608 return run_path(script_name, init_globals) 637 return run_path(script_name, init_globals, run_name) 650 self.assertRaisesRegex(ImportError, msg, run_path, script_name) 656 self._check_script(script_name, "<run_path>", script_name, 664 self._check_script(script_name, "<run_path>", script_name, 672 self._check_script(script_name, "<run_path>", script_name, 681 self._check_script(compiled_name, "<run_path>", compiled_nam [all...] |
/third_party/python/Lib/test/test_tools/ |
H A D | test_fixcid.py | 91 runpy.run_path(script, run_name="__main__")
|
/third_party/python/Lib/multiprocessing/ |
H A D | spawn.py | 291 main_content = runpy.run_path(main_path,
|
/third_party/python/Lib/ |
H A D | runpy.py | 20 "run_module", "run_path", 262 def run_path(path_name, init_globals=None, run_name=None): function 273 otherwise, '<run_path>' will be used for __name__. 278 run_name = "<run_path>"
|
/third_party/pulseaudio/src/pulse/ |
H A D | context.c | 1050 char *run_path = pa_sprintf_malloc("%s" PA_PATH_SEP "run" PA_PATH_SEP PA_NATIVE_DEFAULT_UNIX_SOCKET, pa_win32_get_system_appdata()); local 1051 c->server_list = pa_strlist_prepend(c->server_list, run_path); 1052 pa_xfree(run_path);
|
Completed in 12 milliseconds