HomeSort by: relevance | last modified time | path
    Searched refs:_handle (Results 1 - 11 of 11) sorted by relevancy

  /src/sys/arch/hpc/stand/hpcboot/
file_fat.cpp 66 _handle = CreateFile(_filename, GENERIC_READ, 0, 0,
68 if (_handle == INVALID_HANDLE_VALUE) {
77 CloseHandle(_handle);
91 SetFilePointer(_handle, ofs, 0, FILE_BEGIN);
92 ReadFile(_handle, buf, bytes, &readed, 0);
103 SetFilePointer(_handle, ofs, 0, FILE_BEGIN);
104 WriteFile(_handle, buf, bytes, &wrote, 0);
113 SetFilePointer(_handle, ofs, 0, FILE_BEGIN);
file_fat.h 39 HANDLE _handle; member in class:FatFile
49 size_t size(void) { return GetFileSize(_handle, 0); }
50 BOOL close(void) { return CloseHandle(_handle); }
console.cpp 85 _handle = INVALID_HANDLE_VALUE;
95 if (_handle == INVALID_HANDLE_VALUE)
96 _handle = OpenCOM1();
98 if (_handle == INVALID_HANDLE_VALUE) {
105 GetCommState(_handle, &dcb);
186 WriteFile(_handle, "\r", 1, &wrote, 0);
187 WriteFile(_handle, &c, 1, &wrote, 0);
console.h 67 HANDLE _handle; member in class:SerialConsole
  /src/external/mit/libuv/dist/src/win/
loop-watcher.c 90 if (loop->next_##name##_handle == handle) { \
91 loop->next_##name##_handle = handle->name##_next; \
110 (loop)->next_##name##_handle = (loop)->name##_handles; \
112 while ((loop)->next_##name##_handle != NULL) { \
113 handle = (loop)->next_##name##_handle; \
114 (loop)->next_##name##_handle = handle->name##_next; \
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/gcc/sections/
pecoff.d 93 void* _handle; // corresponding handle
180 auto handle = tdso._pdso._handle;
207 auto handle = tdso._pdso._handle;
352 pdso._handle = handle;
353 setDSOForHandle(pdso, pdso._handle);
417 unsetDSOForHandle(pdso, pdso._handle);
637 pdso._handle = null;
647 const success = GetModuleFileNameA(pdso._handle, buffer.ptr, cast(DWORD)buffer.length) != 0;
macho.d 94 void* _handle; // corresponding handle
179 auto handle = tdso._pdso._handle;
206 auto handle = tdso._pdso._handle;
359 pdso._handle = handle;
360 setDSOForHandle(pdso, pdso._handle);
424 unsetDSOForHandle(pdso, pdso._handle);
582 pdso._handle = null;
elf.d 154 void* _handle; // corresponding handle
245 const success = .dlopen(linkMapForHandle(tdso._pdso._handle).l_name, RTLD_LAZY) !is null;
262 auto handle = tdso._pdso._handle;
294 auto handle = tdso._pdso._handle;
461 pdso._handle = handle;
462 setDSOForHandle(pdso, pdso._handle);
527 unsetDSOForHandle(pdso, pdso._handle);
688 pdso._handle = null;
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/internal/
atomic.d 1004 fakePureMutexInit(&_handle, null);
1007 return fakePureMutexLock(&_handle);
1015 fakePureMutexInit(&_handle);
1018 fakePureMutexLock(&_handle);
1027 return fakePureMutexUnlock(&_handle);
1031 fakePureMutexUnlock(&_handle);
1037 atomicMutexHandle _handle;
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
process.d 2235 return _handle;
2312 assert(_handle != INVALID_HANDLE_VALUE);
2315 auto result = WaitForSingleObject(_handle, timeout);
2325 if (!GetExitCodeProcess(_handle, cast(LPDWORD)&_exitCode))
2328 CloseHandle(_handle);
2329 _handle = INVALID_HANDLE_VALUE;
2350 if (_handle != INVALID_HANDLE_VALUE)
2352 CloseHandle(_handle);
2353 _handle = INVALID_HANDLE_VALUE;
2377 HANDLE _handle = INVALID_HANDLE_VALUE
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/net/
curl.d 4174 __gshared void* _handle;
4179 initOnce!_handle(loadAPI());
4255 if (_handle is null) return;
4260 dlclose(_handle);
4265 FreeLibrary(_handle);
4270 _handle = null;

Completed in 23 milliseconds