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

1 2

  /sdk/sdklauncher/
sdklauncher.c 186 STARTUPINFO startup; local
200 ZeroMemory(&startup, sizeof(startup));
201 startup.cb = sizeof(startup);
202 startup.dwFlags = STARTF_USESTDHANDLES;
203 startup.hStdInput = GetStdHandle(STD_INPUT_HANDLE);
204 startup.hStdOutput = temp_handle;
205 startup.hStdError = temp_handle;
233 &startup, /* startup info, i.e. std handles *
    [all...]
  /external/qemu/android/
qemu-setup.c 463 STARTUPINFO startup; local
466 ZeroMemory( &startup, sizeof(startup) );
467 startup.cb = sizeof(startup);
468 startup.dwFlags = STARTF_USESHOWWINDOW;
469 startup.wShowWindow = SW_SHOWMINIMIZED;
493 &startup, /* startup info, i.e. std handles */
  /external/guava/src/com/google/common/util/concurrent/
AbstractService.java 46 private final Transition startup = new Transition(); field in class:AbstractService
62 * This method is called by {@link #start} to initiate service startup. The
64 * either during this method's run, or after it has returned. If startup
70 * startup, even when {@link #start} is called multiple times.
100 return startup;
108 startup.transitionSucceeded(State.TERMINATED);
112 startup.transitionSucceeded(State.STOPPING);
171 startup.transitionSucceeded(State.RUNNING);
215 startup.transitionFailed(cause);
  /dalvik/vm/jdwp/
JdwpPriv.h 54 bool (*startup)(struct JdwpState* state, const JdwpStartupParams* pParams); member in struct:JdwpTransport
141 return (*state->transport->startup)(state, pParams);
JdwpAdb.c 120 static bool startup(struct JdwpState* state, const JdwpStartupParams* pParams) function
124 LOGV("ADB transport startup\n");
742 startup,
  /bionic/libc/arch-arm/bionic/
crtbegin_dynamic.S 33 # this is the small startup code that is first run when
crtbegin_static.S 33 # this is the small startup code that is first run when
  /bionic/libc/arch-sh/bionic/
crtbegin_static.S 33 # this is the small startup code that is first run when
crtbegin_dynamic.S 33 # this is the small startup code that is first run when
  /bionic/libc/kernel/common/linux/
irq.h 56 unsigned int (*startup)(unsigned int irq); member in struct:irq_chip
  /development/ndk/platforms/android-3/include/linux/
irq.h 56 unsigned int (*startup)(unsigned int irq); member in struct:irq_chip
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
irq.h 56 unsigned int (*startup)(unsigned int irq); member in struct:irq_chip
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
irq.h 56 unsigned int (*startup)(unsigned int irq); member in struct:irq_chip
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
irq.h 56 unsigned int (*startup)(unsigned int irq); member in struct:irq_chip
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
irq.h 56 unsigned int (*startup)(unsigned int irq); member in struct:irq_chip
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
irq.h 56 unsigned int (*startup)(unsigned int irq); member in struct:irq_chip
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
irq.h 56 unsigned int (*startup)(unsigned int irq); member in struct:irq_chip
  /system/core/adb/
adb.c 699 STARTUPINFO startup; local
717 ZeroMemory( &startup, sizeof(startup) );
718 startup.cb = sizeof(startup);
719 startup.hStdInput = GetStdHandle( STD_INPUT_HANDLE );
720 startup.hStdOutput = pipe_write;
721 startup.hStdError = GetStdHandle( STD_ERROR_HANDLE );
722 startup.dwFlags = STARTF_USESTDHANDLES;
740 &startup, /* startup info, i.e. std handles *
    [all...]
  /external/libpng/projects/visualc71/
README_zlib.txt 19 3) Set one of the project as the StartUp project. If you just want to build the
20 binaries set "zlib" as the startup project (Select "zlib" tree view item +
21 Project | Set as StartUp project). If you want to build and test the
23 Set as StartUp project), If you want to build the minigzip utility set it to
24 "minigzip" (Select "minigzip" tree view item + Project | Set as StartUp
  /external/quake/quake/src/WinQuake/
net_comx.cpp 152 char startup[32]; member in struct:ComPort_s
368 Q_strcpy(init, p->startup);
379 Q_strcpy(p->startup, init);
401 Q_strcpy(p->startup, "");
620 if (*p->startup)
622 Modem_Command (p, p->startup);
983 Con_Printf("startup: %s\n", p->startup);
1085 if ((i = Cmd_CheckParm ("startup")) != 0)
1087 Q_strncpy (p->startup, Cmd_Argv (i+1), 32);
    [all...]
  /external/grub/netboot/
tulip.c 494 static void select_media(struct nic *nic, int startup);
    [all...]
  /bionic/libc/arch-x86/bionic/
crtbegin_static.S 32 # this is the small startup code that is first run when
crtbegin_dynamic.S 32 # this is the small startup code that is first run when
  /prebuilt/common/eclipse/
org.eclipse.equinox.common_3.4.0.v20080421-2006.jar 
  /frameworks/base/core/java/android/net/http/
RequestQueue.java 91 void startup() { method in class:RequestQueue.ActivePool
218 mActivePool.startup();

Completed in 594 milliseconds

1 2