Home
last modified time | relevance | path

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

/sdk/find_java/
Dutils.cpp63 STARTUPINFO startup; in execNoWait() local
68 ZeroMemory(&startup, sizeof(startup)); in execNoWait()
69 startup.cb = sizeof(startup); in execNoWait()
70 startup.dwFlags = STARTF_USESHOWWINDOW; in execNoWait()
71 startup.wShowWindow = SW_SHOWDEFAULT; in execNoWait()
82 &startup, /* startup info, i.e. std handles */ in execNoWait()
97 STARTUPINFO startup; in execWait() local
102 ZeroMemory(&startup, sizeof(startup)); in execWait()
103 startup.cb = sizeof(startup); in execWait()
104 startup.dwFlags = STARTF_USESHOWWINDOW; in execWait()
[all …]
Dfind_java_lib.cpp426 STARTUPINFO startup; in getJavaVersion() local
452 ZeroMemory(&startup, sizeof(startup)); in getJavaVersion()
453 startup.cb = sizeof(startup); in getJavaVersion()
454 startup.dwFlags = STARTF_USESHOWWINDOW | STARTF_USESTDHANDLES; in getJavaVersion()
455 startup.wShowWindow = SW_HIDE|SW_MINIMIZE; in getJavaVersion()
457 startup.hStdError = stdoutPipeWt; in getJavaVersion()
458 startup.hStdOutput = stdoutPipeWt; in getJavaVersion()
459 startup.hStdInput = GetStdHandle(STD_INPUT_HANDLE); in getJavaVersion()
470 &startup, // startup info, i.e. std handles in getJavaVersion()
/sdk/sdklauncher/
Dsdklauncher.c73 STARTUPINFO startup; in sdk_launcher() local
80 ZeroMemory(&startup, sizeof(startup)); in sdk_launcher()
81 startup.cb = sizeof(startup); in sdk_launcher()
82 startup.dwFlags = STARTF_USESHOWWINDOW; in sdk_launcher()
83 startup.wShowWindow = SW_HIDE|SW_MINIMIZE; in sdk_launcher()
111 &startup, /* startup info, i.e. std handles */ in sdk_launcher()
/sdk/avdlauncher/
Davdlauncher.c73 STARTUPINFO startup; in avd_launcher() local
80 ZeroMemory(&startup, sizeof(startup)); in avd_launcher()
81 startup.cb = sizeof(startup); in avd_launcher()
82 startup.dwFlags = STARTF_USESHOWWINDOW; in avd_launcher()
83 startup.wShowWindow = SW_HIDE|SW_MINIMIZE; in avd_launcher()
111 &startup, /* startup info, i.e. std handles */ in avd_launcher()
/sdk/templates/other/ContentProvider/root/src/app_package/
DContentProvider.java.ftl33 // TODO: Implement this to initialize your content provider on startup.