HomeSort by relevance Sort by last modified time
    Searched refs:HANDLE (Results 526 - 550 of 976) sorted by null

<<21222324252627282930>>

  /external/chromium_org/sandbox/win/tests/common/
controller.h 120 // Returns the process handle for an asynchronous test.
121 HANDLE process() { return target_process_; }
  /external/chromium_org/skia/ext/
platform_canvas.h 28 // To allow the caller to handle the failure, every Create... factory takes an
44 HANDLE shared_section,
  /external/chromium_org/third_party/WebKit/Source/core/platform/win/
SystemInfo.cpp 116 typedef BOOL (WINAPI* IsWow64ProcessFunc)(HANDLE, PBOOL);
  /external/chromium_org/third_party/libjingle/source/talk/base/
win32socketserver.h 86 void OnDnsNotify(HANDLE task, int error);
130 HWND handle() { return wnd_.handle(); } function in class:talk_base::Win32SocketServer
  /external/chromium_org/third_party/libjingle/source/talk/examples/call/
console.cc 86 HANDLE hIn = GetStdHandle(STD_INPUT_HANDLE);
  /external/chromium_org/third_party/libjingle/source/talk/examples/chat/
consoletask.cc 90 HANDLE hIn = GetStdHandle(STD_INPUT_HANDLE);
  /external/chromium_org/third_party/npapi/npspy/common/
plugload.cpp 116 HANDLE handle = FindFirstFile(search_path.c_str(), &ffdataStruct); local
117 if(handle == INVALID_HANDLE_VALUE)
119 FindClose(handle);
173 FindClose(handle);
185 } while(FindNextFile(handle, &ffdataStruct));
187 FindClose(handle);
  /external/chromium_org/third_party/openssl/openssl/crypto/
LPdir_win.c 51 HANDLE handle; member in struct:LP_dir_context_st
95 (*ctx)->handle = FindFirstFile(wdir, &(*ctx)->ctx);
100 (*ctx)->handle = FindFirstFile((TCHAR *)directory, &(*ctx)->ctx);
102 if ((*ctx)->handle == INVALID_HANDLE_VALUE)
112 if (FindNextFile((*ctx)->handle, &(*ctx)->ctx) == FALSE)
146 FindClose((*ctx)->handle);
  /external/chromium_org/third_party/tcmalloc/chromium/src/windows/
addr2line-pdb.c 53 HANDLE process;
  /external/chromium_org/third_party/tcmalloc/vendor/src/windows/
addr2line-pdb.c 59 HANDLE process;
  /external/chromium_org/win8/metro_driver/
metro_driver.cc 80 HANDLE registration =
  /external/llvm/lib/Support/Windows/
Windows.h 49 handle_type Handle;
55 : Handle(HandleTraits::GetInvalid()) {}
58 : Handle(h) {}
61 if (HandleTraits::IsValid(Handle))
62 HandleTraits::Close(Handle);
66 handle_type t = Handle;
67 Handle = HandleTraits::GetInvalid();
72 if (HandleTraits::IsValid(Handle))
73 HandleTraits::Close(Handle);
74 Handle = h
    [all...]
  /external/lzma/CPP/7zip/Common/
StreamBinder.cpp 129 HANDLE events[2];
  /external/lzma/CPP/Windows/
FileIO.cpp 113 flagsAndAttributes, (HANDLE)NULL);
121 flagsAndAttributes, (HANDLE)NULL);
141 flagsAndAttributes, (HANDLE)NULL);
149 flagsAndAttributes, (HANDLE)NULL);
  /external/openssl/crypto/
LPdir_win.c 51 HANDLE handle; member in struct:LP_dir_context_st
95 (*ctx)->handle = FindFirstFile(wdir, &(*ctx)->ctx);
100 (*ctx)->handle = FindFirstFile((TCHAR *)directory, &(*ctx)->ctx);
102 if ((*ctx)->handle == INVALID_HANDLE_VALUE)
112 if (FindNextFile((*ctx)->handle, &(*ctx)->ctx) == FALSE)
146 FindClose((*ctx)->handle);
  /hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_dec/inc/
OMX_WbAmrDec_Utils.h 147 * @param hComp OMX Handle
160 * @param hComp OMX Handle
173 * @param hComp OMX Handle
214 * @param pHandle OMX Handle
270 * WBAMR_DEC_GetLCMLHandle() Get the handle to the LCML
280 * WBAMR_DEC_FreeLCMLHandle() Frees the handle to the LCML
292 * @param pComponent OMX Handle
346 * @param pComponent OMX Handle
384 HANDLE event;
  /ndk/sources/host-tools/gdb-stub/
gdb-stub.c 147 HANDLE ghJob = CreateJobObject(NULL, "Gdb-Wrapper\0"/*NULL*/);
153 // Configure all child processes associated with the job to terminate when the last handle to the job is closed
189 // Do not handle Ctrl-C in the wrapper
  /ndk/sources/host-tools/sed-4.2.1/lib/
stdio-write.c 53 && GetFileType ((HANDLE) _get_osfhandle (fd)) == FILE_TYPE_PIPE)\
  /external/chromium/net/tools/dump_cache/
upgrade.cc 38 HANDLE OpenServer(const std::wstring& pipe_number) {
118 explicit BaseSM(HANDLE channel);
130 HANDLE channel_;
142 BaseSM::BaseSM(HANDLE channel)
214 MasterSM(const std::wstring& path, HANDLE channel, bool dump_to_disk)
565 SlaveSM(const std::wstring& path, HANDLE channel);
600 SlaveSM::SlaveSM(const std::wstring& path, HANDLE channel)
886 HANDLE CreateServer(std::wstring* pipe_number) {
900 int CopyCache(const std::wstring& output_path, HANDLE pipe, bool copy_to_text) {
  /external/chromium/testing/gtest/src/
gtest-death-test.cc 270 // severity. On Windows, the message is read from a pipe handle. On other
553 // necessary to acquire the handle to the write end of the pipe.
585 // Handle to the write end of the pipe to the child process.
587 // Child process handle.
590 // acquired the handle to the write end of the pipe. After seeing this
605 const HANDLE wait_handles[2] = { child_handle_.Get(), event_handle_.Get() };
618 // We release the handle on our side and continue.
627 // handle or not.
662 HANDLE read_handle, write_handle;
722 NULL, // Retuned process handle is not inheritable
    [all...]
  /external/chromium_org/net/tools/dump_cache/
upgrade_win.cc 42 HANDLE OpenServer(const base::string16& pipe_number) {
122 explicit BaseSM(HANDLE channel);
134 HANDLE channel_;
146 BaseSM::BaseSM(HANDLE channel)
218 MasterSM(const base::FilePath& path, HANDLE channel)
561 SlaveSM(const base::FilePath& path, HANDLE channel);
595 SlaveSM::SlaveSM(const base::FilePath& path, HANDLE channel)
881 HANDLE CreateServer(base::string16* pipe_number) {
895 int UpgradeCache(const base::FilePath& output_path, HANDLE pipe) {
  /external/chromium_org/testing/gtest/src/
gtest-death-test.cc 308 // severity. On Windows, the message is read from a pipe handle. On other
591 // necessary to acquire the handle to the write end of the pipe.
623 // Handle to the write end of the pipe to the child process.
625 // Child process handle.
628 // acquired the handle to the write end of the pipe. After seeing this
643 const HANDLE wait_handles[2] = { child_handle_.Get(), event_handle_.Get() };
656 // We release the handle on our side and continue.
665 // handle or not.
700 HANDLE read_handle, write_handle;
756 NULL, // Retuned process handle is not inheritable
    [all...]
  /external/chromium_org/third_party/lcov/bin/
geninfo 402 # print_usage(handle)
409 local *HANDLE = $_[0];
411 print(HANDLE <<END_OF_USAGE);
1383 # read_string(handle, delimiter);
1385 # Read and return a string in 4-byte chunks from HANDLE until DELIMITER
1393 my $HANDLE = $_[0];
1399 while (read($HANDLE,$packed_word,4) == 4)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/src/
gtest-death-test.cc 270 // severity. On Windows, the message is read from a pipe handle. On other
553 // necessary to acquire the handle to the write end of the pipe.
585 // Handle to the write end of the pipe to the child process.
587 // Child process handle.
590 // acquired the handle to the write end of the pipe. After seeing this
605 const HANDLE wait_handles[2] = { child_handle_.Get(), event_handle_.Get() };
618 // We release the handle on our side and continue.
627 // handle or not.
662 HANDLE read_handle, write_handle;
722 NULL, // Retuned process handle is not inheritable
    [all...]
  /external/chromium_org/ui/base/clipboard/
clipboard_win.cc 104 // This message comes when SetClipboardData was sent a null data handle
109 // This message comes when SetClipboardData was sent a null data handle
366 void Clipboard::WriteToClipboard(unsigned int format, HANDLE handle) {
368 if (handle && !::SetClipboardData(format, handle)) {
370 FreeData(format, handle);
418 HANDLE hdata = ::GetClipboardData(GetWebCustomDataFormatType().ToUINT());
440 HANDLE data = ::GetClipboardData(CF_UNICODETEXT);
463 HANDLE data = ::GetClipboardData(CF_TEXT)
    [all...]

Completed in 1581 milliseconds

<<21222324252627282930>>