Home
last modified time | relevance | path

Searched refs:shm_hand (Results 1 – 4 of 4) sorted by relevance

/external/tesseract/ccutil/
Ddebugwin.cpp65 shm_hand = NULL; in DEBUG_WIN()
74 shm_hand = CreateFileMapping ((HANDLE) 0xffffffff, &security, PAGE_READWRITE, 0, 4096, NULL); in DEBUG_WIN()
75 if (shm_hand == NULL) in DEBUG_WIN()
77 shm_mem = (char *) MapViewOfFile (shm_hand, FILE_MAP_WRITE, 0, 0, 0); in DEBUG_WIN()
81 sprintf (cmd, "scrolwin.exe %d %d", buflines, shm_hand); in DEBUG_WIN()
121 if (shm_hand != NULL) in ~DEBUG_WIN()
122 CloseHandle(shm_hand); in ~DEBUG_WIN()
Ddebugwin.h91 HANDLE shm_hand; //handle to it variable
Docrshell.cpp142 shm.shm_hand = (HANDLE) strtol (shm_h, NULL, 10); in ocr_open_shm()
143 shm.shm_mem = MapViewOfFile (shm.shm_hand, FILE_MAP_WRITE, 0, 0, 0); in ocr_open_shm()
649 CloseHandle (shm.shm_hand); /*no longer used */ in ocr_internal_shutdown()
Docrclass.h317 HANDLE shm_hand; /*handle to shm */ member