/external/mesa3d/src/mesa/drivers/windows/gdi/ |
wgl.c | 481 HANDLE hBits; 529 GetGlyphOutline(hdc, /* handle to device context */
|
/external/netperf/ |
netserver.c | 669 si.hStdInput = (HANDLE)server_sock; 773 /* been inherited ("-i#"), and a single switch to specify the handle */ 901 /* This is the handle we expect to inherit. */ 902 /*+*+SAF server_sock = (HANDLE)atoi(optarg); */ 905 /* This is a handle we should NOT inherit. */ 906 /*+*+SAF CloseHandle((HANDLE)atoi(optarg)); */
|
/external/openssl/crypto/ui/ |
ui_openssl.c | 481 /* Internal functions to open, handle and close a channel to the console. */ 589 /* Internal functions to handle signals and act on them */ 711 HANDLE inh;
|
/external/qemu/android/utils/ |
path.c | 132 /* handle empty path case */ 141 /* handle "/" and degenerate cases like "////" */ 151 /* handle cases where there is no path separator */ 160 /* handle "/foo" */ 389 HANDLE file = CreateFile( /* lpFilename */ path,
|
/external/qemu/ |
cpus.c | 158 HANDLE qemu_event_handle;
|
/external/zlib/src/contrib/minizip/ |
miniunz.c | 89 HANDLE hFile;
|
/external/zlib/src/contrib/untgz/ |
untgz.c | 213 HANDLE hFile;
|
/hardware/ti/omap3/omx/audio/src/openmax_il/aac_dec/inc/ |
OMX_AacDec_Utils.h | 548 HANDLE event; 627 /* Used in tunneling, this is handle of tunneled component */ 694 /** Handle for use with async callbacks */ 712 /** This is component handle */ 718 /** The component thread handle */ 762 /** This is LCML handle */ 957 * @param *hComp This is component handle allocated by the OMX core. [all...] |
/hardware/ti/omap3/omx/audio/src/openmax_il/aac_enc/inc/ |
OMX_AacEnc_Utils.h | 308 HANDLE event; 338 /** Handle for use with async callbacks */ 367 /** This is component handle */ 373 /** The component thread handle */
|
/hardware/ti/omap3/omx/audio/src/openmax_il/g729_enc/inc/ |
OMX_G729Enc_Utils.h | 641 HANDLE event; 673 /** This is component handle */ 677 /** The component thread handle */ 907 * @param hComp OMX Handle 921 * @param hComp OMX Handle 934 * @param hComp OMX Handle 947 * @param hComp OMX Handle [all...] |
/hardware/ti/omap3/omx/audio/src/openmax_il/mp3_dec/inc/ |
OMX_Mp3Dec_Utils.h | 396 HANDLE event; 470 /* Used in tunneling, this is handle of tunneled component */ 533 /** Handle for use with async callbacks */ 535 /** Handle for use with async callbacks */ 561 /** This is component handle */ 570 /** The component thread handle */ 621 /** This is LCML handle */ 791 * @param *hComp This is component handle allocated by the OMX core. 817 * @param pHandle This is component handle allocated by the OMX core. 836 * @param pHandle This is component handle allocated by the OMX core. [all...] |
/hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_enc/inc/ |
OMX_AmrEnc_Utils.h | 679 HANDLE event; 730 /** This is component handle */ 734 /** The component thread handle */ 949 * @param hComp OMX Handle 963 * @param hComp OMX Handle 976 * @param hComp OMX Handle 989 * @param hComp OMX Handle [all...] |
/hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_enc/inc/ |
OMX_WbAmrEnc_Utils.h | 526 HANDLE event; 574 /** This is component handle */ 578 /** The component thread handle */ 782 * @param hComp OMX Handle 795 * @param hComp OMX Handle 808 * @param hComp OMX Handle 821 * @param hComp OMX Handle 863 * @param pHandle OMX Handle 923 * WBAMRENC_GetLCMLHandle() Get the handle to the LCML 933 * WBAMRENC_FreeLCMLHandle() Frees the handle to the LCM [all...] |
/hardware/ti/omap3/omx/audio/src/openmax_il/wma_dec/inc/ |
OMX_WmaDec_Utils.h | 78 HANDLE event; 619 /** Handle for use with async callbacks */ 638 /** This is component handle */ 644 /** The component thread handle */ 675 /** LCML Handle */ 721 /** Flag set when LCML handle is opened */ 886 * @param hComp OMX Handle 901 * @param hComp OMX Handle 915 * @param hComp OMX Handle 929 * @param hComp OMX Handle [all...] |
/ndk/sources/host-tools/make-3.81/ |
commands.c | 406 /* Handle fatal signals. */ 431 extern HANDLE main_thread; 515 /* Cannot call W32_kill with a pid (it needs a handle). The exit
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/ |
Xthreads.h | 105 HANDLE sem;
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/ |
Xthreads.h | 105 HANDLE sem;
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/ |
Xthreads.h | 105 HANDLE sem;
|
/external/chromium_org/third_party/mongoose/ |
mongoose.c | 139 typedef HANDLE pthread_mutex_t; 140 typedef struct {HANDLE signal, broadcast;} pthread_cond_t; 142 #define pid_t HANDLE // MINGW typedefs pid_t to int. Using #define here. 169 HANDLE handle; member in struct:DIR 857 HANDLE handles[2]; 1062 dir->handle = FindFirstFileW(wpath, &dir->info); 1077 if (dir->handle != INVALID_HANDLE_VALUE) 1078 result = FindClose(dir->handle) ? 0 : -1; [all...] |
/external/chromium/base/ |
process_util_unittest.cc | 86 base::TerminationStatus WaitForChildTermination(base::ProcessHandle handle, 93 status = base::GetTerminationStatus(handle, exit_code); 117 base::ProcessHandle handle = this->SpawnChild("SimpleChildProcess", false); local 118 ASSERT_NE(base::kNullProcessHandle, handle); 119 EXPECT_TRUE(base::WaitForSingleProcess(handle, kMaxWaitTimeMs)); 120 base::CloseProcessHandle(handle); 130 base::ProcessHandle handle = this->SpawnChild("SlowChildProcess", false); local 131 ASSERT_NE(base::kNullProcessHandle, handle); 133 EXPECT_TRUE(base::WaitForSingleProcess(handle, kMaxWaitTimeMs)); 134 base::CloseProcessHandle(handle); 140 base::ProcessHandle handle = this->SpawnChild("SlowChildProcess", false); local 183 base::ProcessHandle handle = this->SpawnChild("CrashingChildProcess", local 218 HANDLE handle = ::OpenProcess(PROCESS_ALL_ACCESS, 0, ::GetCurrentProcessId()); local 229 base::ProcessHandle handle = this->SpawnChild("KilledChildProcess", local 260 base::ProcessHandle handle = this->SpawnChild("SimpleChildProcess", false); local 430 base::ProcessHandle handle = this->SpawnChild( local 477 base::ProcessHandle handle; local [all...] |
/external/chromium/testing/gtest/test/ |
gtest-death-test_test.cc | 1045 HANDLE handle = ::CreateEvent(NULL, FALSE, FALSE, NULL); local 1046 ASSERT_NE(INVALID_HANDLE_VALUE, handle); 1048 // Tests that the AutoHandle is correctly initialized with a handle [all...] |
/external/chromium_org/testing/gtest/test/ |
gtest-death-test_test.cc | 1098 HANDLE handle = ::CreateEvent(NULL, FALSE, FALSE, NULL); local [all...] |
/external/chromium_org/third_party/sqlite/src/src/ |
shell.c | 121 static HANDLE hProcess; 124 typedef BOOL (WINAPI *GETPROCTIMES)(HANDLE, LPFILETIME, LPFILETIME, LPFILETIME, LPFILETIME); 137 ** a pointer to it and the current process handle. 1092 /* save off the prepared statment handle and reset row count */ [all...] |
/external/chromium_org/third_party/usrsctp/overrides/usrsctplib/netinet/ |
sctp_os_userspace.h | 62 HANDLE events_[C_MAX_EVENTS]; 76 typedef HANDLE userland_thread_t; [all...] |
/external/gtest/test/ |
gtest-death-test_test.cc | 1045 HANDLE handle = ::CreateEvent(NULL, FALSE, FALSE, NULL); local 1046 ASSERT_NE(INVALID_HANDLE_VALUE, handle); 1048 // Tests that the AutoHandle is correctly initialized with a handle [all...] |