Home
last modified time | relevance | path

Searched refs:startup (Results 1 – 25 of 475) sorted by relevance

12345678910>>...19

/third_party/python/Modules/
Dmain.c387 PyObject *startup = NULL; in pymain_run_startup() local
393 startup = PyUnicode_FromWideChar(env, wcslen(env)); in pymain_run_startup()
394 if (startup == NULL) { in pymain_run_startup()
402 startup = PyUnicode_DecodeFSDefault(env); in pymain_run_startup()
403 if (startup == NULL) { in pymain_run_startup()
407 if (PySys_Audit("cpython.run_startup", "O", startup) < 0) { in pymain_run_startup()
411 FILE *fp = _Py_fopen_obj(startup, "r"); in pymain_run_startup()
418 PyErr_SetFromErrnoWithFilenameObjects(PyExc_OSError, startup, NULL); in pymain_run_startup()
423 (void) _PyRun_SimpleFileObject(fp, startup, 0, &cf); in pymain_run_startup()
429 Py_XDECREF(startup); in pymain_run_startup()
/third_party/boost/libs/asio/include/boost/asio/detail/
Dwinsock_init.hpp39 BOOST_ASIO_DECL static void startup(data& d,
57 startup(data_, Major, Minor); in winsock_init()
64 startup(data_, Major, Minor); in winsock_init()
/third_party/boost/boost/asio/detail/
Dwinsock_init.hpp39 BOOST_ASIO_DECL static void startup(data& d,
57 startup(data_, Major, Minor); in winsock_init()
64 startup(data_, Major, Minor); in winsock_init()
/third_party/libuv/src/win/
Dprocess.c947 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.hStdInput = uv__stdio_handle(process->child_stdio_buffer, 0); in uv_spawn()
1066 startup.hStdOutput = uv__stdio_handle(process->child_stdio_buffer, 1); in uv_spawn()
[all …]
/third_party/libuv/test/
Dtest-tcp-open.c45 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()
376 startup(); in TEST_IMPL()
Dtest-udp-open.c40 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/node/tools/snapshot/
DREADME.md1 # Node.js startup snapshot builder
3 This is the V8 startup snapshot builder of Node.js. Not to be confused with
6 deserialized on top of V8's own startup snapshot. When Node.js is launched,
21 In the default build of the Node.js executable, to embed a V8 startup snapshot
/third_party/flutter/flutter/packages/flutter_tools/lib/src/
Dtracing.dart74 /// Download the startup trace information from the given observatory client and
80 // Delete old startup data, if any.
110 throw 'Engine start event is missing in the timeline. Cannot compute startup time.';
128 throw 'First frame events are missing in the timeline. Cannot compute startup time.';
146 printStatus('Saved startup trace info in ${traceInfoFile.path}.');
/third_party/flutter/flutter/dev/benchmarks/complex_layout/
DREADME.md18 To measure startup time on a device:
21 flutter run --profile --trace-startup
/third_party/gettext/libtextstyle/gnulib-local/modules/
Dlibxml.diff17 ! # dependencies and their dynamic relocations have an impact on the startup
23 ! # These are more than 12800 relocations, to perform at program startup.
/third_party/boost/tools/build/src/engine/
Dstartup.cpp35 void b2::startup::load_builtins() in load_builtins()
43 LIST *b2::startup::builtin_boost_build(FRAME *frame, int flags) in builtin_boost_build()
144 bool b2::startup::bootstrap(FRAME *frame) in bootstrap()
Dstartup.h15 namespace startup
/third_party/flutter/flutter/packages/flutter_tools/lib/src/commands/
Drun.dart36 ..addFlag('trace-startup',
38 help: 'Trace application startup, then exit, saving the trace to a file.',
55 bool get traceStartup => argResults['trace-startup'];
100 help: 'Whether to wait for the first frame when tracing startup ("--trace-startup"), '
121 'application startup. Flags passed through this option must be '
145 …h support for hot reloading. Only available for debug mode. Not available with "--trace-startup".',
151 … help: 'Stay resident after launching the application. Not available with "--trace-startup".',
162 'measure the startup time and the app restart time, write the '
/third_party/flutter/flutter/packages/flutter/lib/src/painting/
Dbinding.dart42 /// shaders during startup. The warm up is only costly (100ms-200ms,
61 /// The image cache is created during startup by the [createImageCache]
89 /// The image cache is created during startup by the [PaintingBinding]'s
/third_party/flutter/flutter/dev/benchmarks/microbenchmarks/lib/stocks/
Dlayout_bench.dart30 await tester.pump(); // Start startup animation
31 await tester.pump(const Duration(seconds: 1)); // Complete startup animation
Dbuild_bench.dart29 await tester.pump(); // Start startup animation
30 await tester.pump(const Duration(seconds: 1)); // Complete startup animation
Danimation_bench.dart53 await tester.pump(); // Start startup animation
54 await tester.pump(const Duration(seconds: 1)); // Complete startup animation
/third_party/cef/patch/patches/
Dlinux_chrome_widevine_3149.patch17 +// On Linux the Widevine CDM is loaded into the zygote at startup. When the
20 +// save the path to the new Widevine CDM in this file. Next time at startup this
/third_party/weston/tests/
Dinternal-screenshot.ini2 startup-animation=none
/third_party/skia/third_party/externals/swiftshader/src/System/
DSocket.hpp41 static void startup();
/third_party/skia/third_party/externals/swiftshader/src/Common/
DSocket.hpp41 static void startup();
/third_party/python/Lib/test/
Dtest_embed.py1464 startup = os.path.join(self.oldcwd, os_helper.TESTFN) + ".py"
1465 with open(startup, "w", encoding="utf-8") as f:
1469 env = {**remove_python_envvars(), "PYTHONSTARTUP": startup}
1474 os.unlink(startup)
1477 startup = os.path.join(self.oldcwd, os_helper.TESTFN) + ".py"
1478 with open(startup, "w", encoding="utf-8") as f:
1481 env = {**remove_python_envvars(), "PYTHONSTARTUP": startup}
1486 os.unlink(startup)
/third_party/glib/gio/tests/
Dbasic-application.c54 startup (GApplication *app) in startup() function
250 g_signal_connect (app, "startup", G_CALLBACK (startup), NULL); in main()
/third_party/openssl/VMS/
Dmsg_install.com4 $ ! P1 startup / setup / shutdown scripts directory
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/
DBUILD.gn79 "//base/startup/init/interfaces/innerkits/include/syspara",
111 "//base/startup/init/interfaces/innerkits:libbegetutil",
455 "//base/startup/init/interfaces/innerkits/include/syspara",
509 "//base/startup/init/interfaces/innerkits:libbegetutil",
537 "//base/startup/init/interfaces/innerkits/include/syspara",
582 "//base/startup/init/interfaces/innerkits:libbegetutil",

12345678910>>...19