Searched refs:handle (Results 1 - 25 of 268) sorted by relevance

1234567891011

/vbox/src/libs/xpcom18a4/nsprpub/pr/include/
H A Dprcountr.h57 ** convention. A "handle" is returned when the counter is
59 ** handle. An API is provided to get an existing counter's handle
61 ** Similarly, a counter's name can be retrieved given its handle.
127 ** Opaque counter handle type.
142 ** handle.
156 #define PR_INIT_COUNTER_HANDLE(handle,value)\
157 (handle) = (PRCounterHandle)(value)
159 #define PR_INIT_COUNTER_HANDLE(handle,value)
169 ** PRCounterHandle to receive the handle returne
230 PRCounterHandle handle variable
327 PRCounterHandle handle variable
356 PRCounterHandle handle variable
449 PRCounterHandle handle variable
523 PRCounterHandle handle variable
[all...]
H A Dprtrace.h77 ** handle as an input argument, the caller must ensure that the
78 ** trace handle argument is valid. An invalid trace handle
117 ** Opaque type for the trace handle
131 PRTraceHandle handle; /* PRTraceHandle creating the trace entry */ member in struct:PRTraceEntry
159 ** handle.
173 #define PR_INIT_TRACE_HANDLE(handle,value)\
174 (handle) = (PRCounterHandle)(value)
176 #define PR_INIT_TRACE_HANDLE(handle,value)
181 ** FUNCTION: PR_CreateTrace() -- Create a trace handle
258 PRTraceHandle handle /* Handle to be destroyed */ variable
534 PRTraceHandle handle variable
[all...]
/vbox/src/VBox/HostServices/SharedFolders/
H A Dshflhandle.cpp26 * Very basic and primitive handle management. Should be sufficient for our needs.
50 /* Never return handle 0 */
73 SHFLHANDLE handle; local
79 /* Find next free handle */
86 for(handle=lastHandleIndex;handle<SHFLHANDLE_MAX;handle++)
88 if(pHandles[handle].pvUserData == 0)
90 lastHandleIndex = handle;
95 if(handle
124 vbsfFreeHandle(PSHFLCLIENTDATA pClient, SHFLHANDLE handle) argument
138 vbsfQueryHandle(PSHFLCLIENTDATA pClient, SHFLHANDLE handle, uint32_t uType) argument
153 vbsfQueryFileHandle(PSHFLCLIENTDATA pClient, SHFLHANDLE handle) argument
159 vbsfQueryDirHandle(PSHFLCLIENTDATA pClient, SHFLHANDLE handle) argument
165 vbsfQueryHandleType(PSHFLCLIENTDATA pClient, SHFLHANDLE handle) argument
[all...]
/vbox/src/libs/libxml2-2.6.31/win32/wince/
H A Dwincecompat.c22 int read(int handle, char *buffer, unsigned int len) argument
24 return(fread(&buffer[0], len, 1, (FILE *) handle));
27 int write(int handle, const char *buffer, unsigned int len) argument
29 return(fwrite(&buffer[0], len,1,(FILE *) handle));
44 int close(int handle) argument
46 return ( fclose((FILE *) handle) );
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/
H A Dns_parse.c121 ns_initparse(const u_char *msg, int msglen, ns_msg *handle) { argument
125 memset(handle, 0x5e, sizeof *handle);
126 handle->_msg = msg;
127 handle->_eom = eom;
130 NS_GET16(handle->_id, msg);
133 NS_GET16(handle->_flags, msg);
137 NS_GET16(handle->_counts[i], msg);
140 if (handle->_counts[i] == 0)
141 handle
163 ns_parserr(ns_msg *handle, ns_sect section, int rrnum, ns_rr *rr) argument
[all...]
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/pid/
H A Dtst.ret1.c52 handle(int sig) function
61 (void) signal(SIGUSR1, handle);
H A Dtst.ret2.c46 handle(int sig) function
55 (void) signal(SIGUSR1, handle);
H A Dtst.args1.c40 handle(int sig) function
49 (void) signal(SIGUSR1, handle);
H A Dtst.weak1.c46 handle(int sig) function
55 (void) signal(SIGUSR1, handle);
H A Dtst.weak2.c46 handle(int sig) function
55 (void) signal(SIGUSR1, handle);
/vbox/src/VBox/Additions/x11/x11include/libdrm-2.4.13/
H A Dnouveau_grobj.h31 uint32_t handle; member in struct:nouveau_grobj
41 int nouveau_grobj_alloc(struct nouveau_channel *, uint32_t handle,
43 int nouveau_grobj_ref(struct nouveau_channel *, uint32_t handle,
H A Dnouveau_drm.h41 uint32_t handle; member in struct:drm_nouveau_channel_alloc::__anon3628
53 uint32_t handle; member in struct:drm_nouveau_grobj_alloc
59 uint32_t handle; member in struct:drm_nouveau_notifierobj_alloc
66 uint32_t handle; member in struct:drm_nouveau_gpuobj_free
96 uint32_t handle; member in struct:drm_nouveau_gem_info
113 uint32_t handle; member in struct:drm_nouveau_gem_pushbuf_bo
149 uint32_t handle; member in struct:drm_nouveau_gem_pushbuf_call
161 uint32_t handle; member in struct:drm_nouveau_gem_pin
167 uint32_t handle; member in struct:drm_nouveau_gem_unpin
174 uint32_t handle; member in struct:drm_nouveau_gem_cpu_prep
179 uint32_t handle; member in struct:drm_nouveau_gem_cpu_fini
183 uint32_t handle; member in struct:drm_nouveau_gem_tile
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/
H A Ddumb_bo.h33 uint32_t handle; member in struct:dumb_bo
43 struct dumb_bo *dumb_get_bo_from_fd(int fd, int handle, int pitch, int size);
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/raise/
H A Dtst.raise2.c33 handle(int sig) function
43 sa.sa_handler = handle;
H A Dtst.raise3.c33 handle(int sig) function
43 sa.sa_handler = handle;
/vbox/src/libs/libxml2-2.6.31/
H A Dxmlmodule.c24 void *handle; member in struct:_xmlModule
28 static int xmlModulePlatformClose(void *handle);
29 static int xmlModulePlatformSymbol(void *handle, const char *name, void **result);
66 * Returns a handle for the module or NULL in case of error
81 module->handle = xmlModulePlatformOpen(name);
83 if (module->handle == NULL) {
117 rc = xmlModulePlatformSymbol(module->handle, name, symbol);
133 * @module: the module handle
153 rc = xmlModulePlatformClose(module->handle);
169 * @module: the module handle
223 xmlModulePlatformClose(void *handle) argument
235 xmlModulePlatformSymbol(void *handle, const char *name, void **symbol) argument
267 xmlModulePlatformClose(void *handle) argument
279 xmlModulePlatformSymbol(void *handle, const char *name, void **symbol) argument
312 xmlModulePlatformClose(void *handle) argument
327 xmlModulePlatformSymbol(void *handle, const char *name, void **symbol) argument
358 xmlModulePlatformClose(void *handle) argument
377 xmlModulePlatformSymbol(void *handle, const char *name, void **symbol) argument
402 void *handle; local
420 xmlModulePlatformClose(void *handle) argument
432 xmlModulePlatformSymbol(void *handle, const char *name, void **symbol) argument
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/misc/
H A Dprcountr.c241 PRCounterHandle handle
244 RName *rnp = (RName *)handle;
324 PRCounterHandle handle,
330 RName *rnp = (RName *)handle;
350 PRCounterHandle handle
353 PR_Lock(((RName *)handle)->lock);
354 ((RName *)handle)->counter++;
355 PR_Unlock(((RName *)handle)->lock);
358 handle, ((RName *)handle)
323 PR_GetCounterNameFromHandle( PRCounterHandle handle, const char **qName, const char **rName, const char **description ) argument
388 PR_AddToCounter( PRCounterHandle handle, PRUint32 value ) argument
408 PR_SubtractFromCounter( PRCounterHandle handle, PRUint32 value ) argument
441 PR_SetCounter( PRCounterHandle handle, PRUint32 value ) argument
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/
H A Dloader.h71 int handle; /* Unique id used to remove symbols from member in struct:_loader
100 char *_LoaderHandleToName(int handle);
101 char *_LoaderHandleToCanonicalName(int handle);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.6.5/
H A Dloader.h68 int handle; /* Unique id used to remove symbols from member in struct:_loader
97 char *_LoaderHandleToName(int handle);
98 char *_LoaderHandleToCanonicalName(int handle);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.7.7/
H A Dloader.h68 int handle; /* Unique id used to remove symbols from member in struct:_loader
97 char *_LoaderHandleToName(int handle);
98 char *_LoaderHandleToCanonicalName(int handle);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.8.0/
H A Dloader.h68 int handle; /* Unique id used to remove symbols from member in struct:_loader
97 char *_LoaderHandleToName(int handle);
98 char *_LoaderHandleToCanonicalName(int handle);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.9.0/
H A Dloader.h68 int handle; /* Unique id used to remove symbols from member in struct:_loader
97 char *_LoaderHandleToName(int handle);
98 char *_LoaderHandleToCanonicalName(int handle);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/LzmaCompress/Sdk/C/
H A DThreads.c30 thread->handle =
34 return HandleToWRes(thread->handle);
44 if (thread->handle == NULL)
46 return WaitObject(thread->handle);
51 return MyCloseHandle(&thread->handle);
56 p->handle = CreateEvent(NULL, manualReset, (initialSignaled ? TRUE : FALSE), NULL);
57 return HandleToWRes(p->handle);
70 WRes Event_Set(CEvent *p) { return BOOLToWRes(SetEvent(p->handle)); }
71 WRes Event_Reset(CEvent *p) { return BOOLToWRes(ResetEvent(p->handle)); }
72 WRes Event_Wait(CEvent *p) { return WaitObject(p->handle); }
[all...]
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/wine/
H A Dserver.h63 extern int CDECL wine_server_fd_to_handle( int fd, unsigned int access, unsigned int attributes, HANDLE *handle );
64 extern int CDECL wine_server_handle_to_fd( HANDLE handle, unsigned int access, int *unix_fd, unsigned int *options );
65 extern void CDECL wine_server_release_fd( HANDLE handle, int unix_fd );
101 /* convert an object handle to a server handle */
102 static inline obj_handle_t wine_server_obj_handle( HANDLE handle )
104 if ((int)(INT_PTR)handle != (INT_PTR)handle) return 0xfffffff0; /* some invalid handle */
105 return (INT_PTR)handle;
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/wine/
H A Dserver.h63 extern int CDECL wine_server_fd_to_handle( int fd, unsigned int access, unsigned int attributes, HANDLE *handle );
64 extern int CDECL wine_server_handle_to_fd( HANDLE handle, unsigned int access, int *unix_fd, unsigned int *options );
65 extern void CDECL wine_server_release_fd( HANDLE handle, int unix_fd );
101 /* convert an object handle to a server handle */
102 static inline obj_handle_t wine_server_obj_handle( HANDLE handle )
104 if ((int)(INT_PTR)handle != (INT_PTR)handle) return 0xfffffff0; /* some invalid handle */
105 return (INT_PTR)handle;
[all...]

Completed in 2364 milliseconds

1234567891011