/third_party/python/Modules/ |
H A D | main.c | 394 PyObject *startup = NULL; in pymain_run_startup() local 400 startup = PyUnicode_FromWideChar(env, wcslen(env)); in pymain_run_startup() 401 if (startup == NULL) { in pymain_run_startup() 409 startup = PyUnicode_DecodeFSDefault(env); in pymain_run_startup() 410 if (startup == NULL) { in pymain_run_startup() 414 if (PySys_Audit("cpython.run_startup", "O", startup) < 0) { in pymain_run_startup() 418 FILE *fp = _Py_fopen_obj(startup, "r"); in pymain_run_startup() 425 PyErr_SetFromErrnoWithFilenameObjects(PyExc_OSError, startup, NULL); in pymain_run_startup() 430 (void) _PyRun_SimpleFileObject(fp, startup, 0, &cf); in pymain_run_startup() 436 Py_XDECREF(startup); in pymain_run_startup() [all...] |
/third_party/libuv/src/win/ |
H A D | process.c | 918 STARTUPINFOW startup; in uv_spawn() local 1028 startup.cb = sizeof(startup); in uv_spawn() 1029 startup.lpReserved = NULL; in uv_spawn() 1030 startup.lpDesktop = NULL; in uv_spawn() 1031 startup.lpTitle = NULL; in uv_spawn() 1032 startup.dwFlags = STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW; in uv_spawn() 1034 startup.cbReserved2 = uv__stdio_size(child_stdio_buffer); in uv_spawn() 1035 startup.lpReserved2 = (BYTE*) child_stdio_buffer; in uv_spawn() 1037 startup in uv_spawn() [all...] |
/third_party/node/deps/uv/src/win/ |
H A D | process.c | 947 STARTUPINFOW startup; in uv_spawn() local 1056 startup.cb = sizeof(startup); in uv_spawn() 1057 startup.lpReserved = NULL; in uv_spawn() 1058 startup.lpDesktop = NULL; in uv_spawn() 1059 startup.lpTitle = NULL; in uv_spawn() 1060 startup.dwFlags = STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW; in uv_spawn() 1062 startup.cbReserved2 = uv__stdio_size(process->child_stdio_buffer); in uv_spawn() 1063 startup.lpReserved2 = (BYTE*) process->child_stdio_buffer; in uv_spawn() 1065 startup in uv_spawn() [all...] |
/third_party/libuv/test/ |
H A D | test-tcp-open.c | 45 static void startup(void) { in startup() function 244 startup(); in TEST_IMPL() 290 startup(); in TEST_IMPL() 317 startup(); in TEST_IMPL() 343 startup(); in TEST_IMPL() 382 startup(); in TEST_IMPL()
|
H A D | test-udp-open.c | 40 static void startup(void) { in startup() function 147 startup(); in TEST_IMPL() 201 startup(); in TEST_IMPL() 230 startup(); in TEST_IMPL() 262 startup(); in TEST_IMPL()
|
/third_party/skia/third_party/externals/swiftshader/src/Common/ |
H A D | Socket.hpp | 41 static void startup();
|
H A D | Socket.cpp | 96 void Socket::startup() in startup() function in sw::Socket
|
/third_party/skia/third_party/externals/swiftshader/src/System/ |
H A D | Socket.hpp | 41 static void startup();
|
H A D | Socket.cpp | 97 void Socket::startup() in startup() function in sw::Socket
|
/third_party/node/benchmark/misc/ |
H A D | print.js | 35 throw new Error(`Error during node startup, exit code ${code}`);
|
/third_party/ltp/testcases/kernel/sched/sched_stress/ |
H A D | sched_driver.c | 139 void startup(long); 181 startup(start_time); in main() 249 /*------------------------------ startup() ------------------------------*/ 254 void startup(long start_time) in startup() function
|
/third_party/python/Lib/test/ |
H A D | test_embed.py | 1520 # GetFullPathNameW() on startup, which (re-)normalizes the path overly. 1685 startup = os.path.join(self.oldcwd, os_helper.TESTFN) + ".py" 1686 with open(startup, "w", encoding="utf-8") as f: 1690 env = {**remove_python_envvars(), "PYTHONSTARTUP": startup} 1695 os.unlink(startup) 1698 startup = os.path.join(self.oldcwd, os_helper.TESTFN) + ".py" 1699 with open(startup, "w", encoding="utf-8") as f: 1702 env = {**remove_python_envvars(), "PYTHONSTARTUP": startup} 1707 os.unlink(startup)
|
/third_party/vk-gl-cts/external/amber/src/android_gradle/ |
H A D | gradlew.bat | 4 @rem Gradle startup script for Windows
|
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/ |
H A D | gradlew.bat | 4 @rem Gradle startup script for Windows
|
/third_party/skia/third_party/externals/oboe/apps/OboeTester/ |
H A D | gradlew.bat | 4 @rem Gradle startup script for Windows
|
/third_party/skia/third_party/externals/oboe/apps/fxlab/ |
H A D | gradlew.bat | 4 @rem Gradle startup script for Windows
|
/third_party/skia/third_party/externals/oboe/samples/ |
H A D | gradlew.bat | 4 @rem Gradle startup script for Windows
|
/third_party/skia/third_party/externals/oboe/tests/UnitTestRunner/ |
H A D | gradlew.bat | 4 @rem Gradle startup script for Windows
|
/third_party/skia/third_party/externals/libwebp/ |
H A D | gradlew.bat | 20 @rem Gradle startup script for Windows
|
/third_party/ltp/pan/ |
H A D | ltp-pan.c | 333 time_t startup; in main() local 348 time(&startup); in main() 349 s = ctime(&startup); in main() 352 fprintf(logfile, "startup='%s'\n", s); in main()
|
/third_party/mksh/ |
H A D | os2.c | 29 #include <klibc/startup.h> 452 * are opened in text mode at the startup. By the way, on OS/2 kLIBC in execve() 456 * startup. In this case, some programs such as sed suffer from CR. in execve()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/debugging/ |
H A D | symbolize_test.cc | 88 int ABSL_ATTRIBUTE_SECTION_VARIABLE(.text.startup) startup_func() { in startup_func()
|
/third_party/python/Lib/idlelib/ |
H A D | pyshell.py | 833 "https://docs.python.org/3/library/idle.html#startup-failure", 1511 Open a shell window, run a startup script, enable the debugger, and 1535 startup = False 1568 startup = True 1600 'editor-on-startup', type='bool') 1663 if startup:
|
/third_party/nghttp2/src/ |
H A D | shrpx_worker_process.cc | 652 if (config->tls.ocsp.startup) { in worker_process_event_loop()
|
/third_party/skia/third_party/externals/swiftshader/src/Main/ |
H A D | SwiftConfig.cpp | 74 Socket::startup(); in createServer()
|