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

<<11121314151617181920>>

  /external/skia/include/core/
SkOSFile.h 112 HANDLE fHandle;
  /hardware/ti/omap3/dspbridge/inc/
dbtype.h 141 typedef PVOID HANDLE; /* h */
  /hardware/ti/omap3/dspbridge/libbridge/inc/
dbtype.h 141 typedef PVOID HANDLE; /* h */
  /hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_dec/inc/
OMX_AmrDec_Utils.h 167 HANDLE event;
  /external/chromium_org/base/process/
launch_win.cc 60 // stdout/stderr on startup (before the handle IDs can be reused).
185 // If the caller wants the process handle, we won't close it.
198 bool SetJobObjectAsKillOnJobClose(HANDLE job_object) {
210 HANDLE out_read = NULL;
211 HANDLE out_write = NULL;
229 // Ensure the read handle to the pipe for STDOUT is not inherited.
  /external/chromium_org/chrome/browser/first_run/
upgrade_util_win.cc 59 HANDLE handle = HANDLE(phandle); local
60 WaitForSingleObject(handle, INFINITE);
62 ::GetExitCodeProcess(handle, &exit_code);
63 ::CloseHandle(handle);
112 // we exit. But ShellExecute does not support handle passing to the child
120 HANDLE mutex = ::CreateMutexW(NULL, TRUE, mutex_name.c_str());
121 // The |mutex| handle needs to be leaked. See comment above.
226 base::ProcessHandle handle; local
    [all...]
  /external/chromium_org/sandbox/win/src/
handle_table.cc 100 // Most handle names are very short, so start small and reuse this buffer.
105 result = QueryObject(reinterpret_cast<HANDLE>(handle_entry_->Handle),
109 result = QueryObject(reinterpret_cast<HANDLE>(handle_entry_->Handle),
128 result = QueryObject(reinterpret_cast<HANDLE>(
129 handle_entry_->Handle), ObjectNameInformation, name.get(),
sandbox_nt_util.cc 104 // Handle for our private heap.
107 SANDBOX_INTERCEPT HANDLE g_shared_section;
226 HANDLE* root) {
235 if (in_object->RootDirectory != static_cast<HANDLE>(0) && !root)
273 NTSTATUS GetProcessId(HANDLE process, ULONG *process_id) {
287 bool IsSameProcess(HANDLE process) {
307 bool IsValidImageSection(HANDLE section, PVOID *base, PLARGE_INTEGER offset,
312 HANDLE query_section;
filesystem_dispatcher.cc 109 HANDLE handle; local
116 &handle, &nt_status,
124 ipc->return_info.handle = handle;
151 HANDLE handle; local
156 share_access, open_options, &handle,
164 ipc->return_info.handle = handle;
    [all...]
filesystem_interception.cc 39 if (!ValidParameter(file, sizeof(HANDLE), WRITE))
82 *file = answer.handle;
110 if (!ValidParameter(file, sizeof(HANDLE), WRITE))
150 *file = answer.handle;
276 NtSetInformationFileFunction orig_SetInformationFile, HANDLE file,
  /external/chromium_org/sandbox/win/tests/validation_tests/
commands.cc 49 HANDLE file;
100 HANDLE process = ::OpenProcess(access_mask,
101 FALSE, // Do not inherit handle.
125 HANDLE thread = ::OpenThread(THREAD_QUERY_INFORMATION,
  /external/chromium_org/sandbox/win/tools/finder/
finder_kernel.cc 101 HANDLE file_handle;
173 HANDLE handle; local
177 status_code = NtGenericOpen(GENERIC_ALL, &path_attributes, func, &handle);
181 NtClose(handle);
191 status_code = NtGenericOpen(GENERIC_WRITE, &path_attributes, func, &handle);
195 NtClose(handle);
205 status_code = NtGenericOpen(GENERIC_READ, &path_attributes, func, &handle);
209 NtClose(handle);
224 HANDLE *handle)
    [all...]
  /external/chromium_org/skia/ext/
bitmap_platform_device_win.cc 37 HANDLE shared_section, void** data) {
108 // this will free the bitmap data as well as the bitmap handle
165 HANDLE shared_section) {
315 HANDLE shared_section,
  /external/chromium_org/third_party/angle_dx11/src/libEGL/
Surface.cpp 47 Surface::Surface(Display *display, const Config *config, HANDLE shareHandle, EGLint width, EGLint height, EGLenum textureFormat, EGLenum textureType)
267 SetProp(mWindow, kSurfaceProperty, reinterpret_cast<HANDLE>(this));
268 SetProp(mWindow, kParentWndProc, reinterpret_cast<HANDLE>(oldWndProc));
  /external/chromium_org/third_party/skia/src/utils/
SkOSFile.cpp 106 static bool get_the_file(HANDLE handle, SkString* name, WIN32_FIND_DATAW* dataPtr, bool getDir)
112 if (::FindNextFileW(handle, &data))
130 if (!::FindNextFileW(handle, dataPtr))
150 if (fHandle != 0 && fHandle != (HANDLE)~0)
153 return fHandle != (HANDLE)~0 && get_the_file(fHandle, name, dataPtr, getDir);
  /external/libvpx/libvpx/vp8/common/
threading.h 25 #define pthread_t HANDLE
27 #define pthread_create(thhandle,attr,thfunc,tharg) (int)((*thhandle=(HANDLE)_beginthreadex(NULL,0,(unsigned int (__stdcall *)(void *))thfunc,tharg,0,NULL))==NULL)
82 #define sem_t HANDLE
  /external/skia/src/utils/
SkOSFile.cpp 106 static bool get_the_file(HANDLE handle, SkString* name, WIN32_FIND_DATAW* dataPtr, bool getDir)
112 if (::FindNextFileW(handle, &data))
130 if (!::FindNextFileW(handle, dataPtr))
150 if (fHandle != 0 && fHandle != (HANDLE)~0)
153 return fHandle != (HANDLE)~0 && get_the_file(fHandle, name, dataPtr, getDir);
  /external/chromium_org/third_party/lcov/bin/
lcov 369 # print_usage(handle)
376 local *HANDLE = $_[0];
378 print(HANDLE <<END_OF_USAGE);
570 local *HANDLE;
574 open(HANDLE, ">$gcov_dir/vmlinux") or
576 print(HANDLE "0");
577 close(HANDLE);
917 my $data; # Data handle for current entry
    [all...]
  /external/llvm/utils/KillTheDoctor/
KillTheDoctor.cpp 80 handle_type Handle;
84 : Handle(HandleType::GetInvalidHandle()) {}
86 explicit ScopedHandle(handle_type handle)
87 : Handle(handle) {}
90 HandleType::Destruct(Handle);
93 ScopedHandle& operator=(handle_type handle) {
94 // Cleanup current handle.
95 if (!HandleType::isValid(Handle))
96 HandleType::Destruct(Handle);
    [all...]
  /external/stlport/src/details/
fstream_win32io.cpp 75 // Return true if the file handle isn't a directory.
112 long osfhnd; // the real os HANDLE
113 char osfile; // file handle flags
129 static ios_base::openmode _get_osfflags(int fd, HANDLE oshandle) {
168 static ios_base::openmode _get_osfflags(int fd, HANDLE oshandle) {
339 HANDLE oshandle = (HANDLE)_get_osfhandle(file_no);
523 WriteFile((HANDLE)_M_file_id, writetextbuf,
622 // destroy view handle as well
  /ndk/sources/cxx-stl/stlport/src/details/
fstream_win32io.cpp 75 // Return true if the file handle isn't a directory.
112 long osfhnd; // the real os HANDLE
113 char osfile; // file handle flags
129 static ios_base::openmode _get_osfflags(int fd, HANDLE oshandle) {
168 static ios_base::openmode _get_osfflags(int fd, HANDLE oshandle) {
339 HANDLE oshandle = (HANDLE)_get_osfhandle(file_no);
523 WriteFile((HANDLE)_M_file_id, writetextbuf,
622 // destroy view handle as well
  /external/bison/lib/glthread/
lock.c 696 static HANDLE
699 HANDLE event;
705 HANDLE *new_array =
706 (HANDLE *) realloc (wq->array, new_alloc * sizeof (HANDLE));
804 HANDLE event = gl_waitqueue_add (&lock->waiting_readers);
857 HANDLE event = gl_waitqueue_add (&lock->waiting_writers);
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
pthread.h 306 #if !defined(HANDLE)
308 # define HANDLE void *
576 * Generic handle type - intended to extend uniqueness beyond
    [all...]
  /external/chromium/base/
file_util.h 158 // Same as above, but takes a previously-opened file handle instead of a name.
159 BASE_API bool GetFileCreationLocalTimeFromHandle(HANDLE file_handle,
277 // Returns a handle to the opened file or NULL if an error occured.
376 // A class to handle auto-closing of FILE*'s.
389 // A class to handle auto-closing of FDs.
477 HANDLE find_handle_;
532 // Is file_ a valid file handle that points to an open, memory mapped file?
551 HANDLE file_mapping_;
  /external/chromium_org/cloud_print/virtual_driver/win/port_monitor/
port_monitor_unittest.cc 183 HANDLE monitor_handle = NULL;
184 HANDLE port_handle = NULL;
185 HANDLE xcv_handle = NULL;

Completed in 1416 milliseconds

<<11121314151617181920>>