Searched defs:access (Results 1 - 25 of 67) sorted by relevance

123

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/PosixLib/Gen/
H A Daccess.c2 Implementation of the Posix access() function.
27 The access() function checks the file, named by the pathname pointed to by
31 The value of Mode is either the bitwise-inclusive OR of the access
42 is indicated by errno. Values of errno specific to the access
46 access( function
/vbox/src/VBox/GuestHost/OpenGL/packer/
H A Dpack_bufferobject.c14 crPackMapBufferARB( GLenum target, GLenum access, argument
20 (void)access;
/vbox/src/VBox/GuestHost/OpenGL/include/state/
H A Dcr_bufferobject.h36 GLenum access; member in struct:__anon16173
/vbox/src/VBox/RDP/client-1.8.3/
H A Dprinter.c112 printer_create(uint32 device_id, uint32 access, uint32 share_mode, uint32 disposition, uint32 flags, argument
H A Dparallel.c88 parallel_create(uint32 device_id, uint32 access, uint32 share_mode, uint32 disposition, argument
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/windows/
H A Dw32shm.c49 * NSPR-to-NT access right mapping table for file-mapping objects.
51 * The OR of these three access masks must equal FILE_MAP_ALL_ACCESS.
53 * exists, CreateFileMapping requests full access to the existing
181 PRUint32 access = FILE_MAP_WRITE; local
187 access = FILE_MAP_READ;
190 access,
H A Dw16io.c95 int access = O_BINARY; local
103 access |= O_RDONLY;
105 access |= O_WRONLY;
107 access |= O_RDWR;
110 access |= O_CREAT;
114 access |= O_TRUNC;
116 access |= O_APPEND;
118 access |= O_RDONLY;
123 file = (PRInt32) sopen( name, access, SH_DENYNO, rights );
586 rv = (PRInt32) access( nam
[all...]
/vbox/src/libs/zlib-1.2.6/examples/
H A Dzran.c1 /* zran.c -- example of zlib/gzip stream indexing and random access
7 for random access of a compressed file. A file containing a zlib or gzip
9 its entirety, and an index built with access points about every SPAN bytes
14 An access point can be created at the start of any deflate block, by saving
21 a new access point. If so, that point is saved in a data structure that
34 requests for random access reads from the compressed data would try to use
39 access, mainly copying the 32K byte dictionary. So if small pieces of the
44 not be constrained to have access points at block boundaries, but requires
45 more memory per access point, and also cannot be saved to file due to the
57 #define SPAN 1048576L /* desired distance between access point
70 struct access { struct
[all...]
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/msvcrt/
H A Dio.h148 static inline int access(const char* path, int mode) { return _access(path, mode); } function
/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/
H A Dsnmp_structs.h55 /* MIB object access */
67 u8_t access; member in struct:obj_def
180 /** derived node, has access functions for mib object in external memory or device
/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/
H A Dsnmp_structs.h61 /* MIB access types */
65 /* MIB object access */
77 u8_t access; member in struct:obj_def
190 /** derived node, has access functions for mib object in external memory or device
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/
H A Dio.h145 static inline int access(const char* path, int mode) { return _access(path, mode); } function
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/
H A Dxf86Bus.h67 EntityAccessPtr access; member in struct:__anon7520
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/
H A Dxf86Bus.h67 EntityAccessPtr access; member in struct:__anon7889
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/
H A Dxf86Bus.h67 EntityAccessPtr access; member in struct:__anon8245
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.6.5/
H A Dxf86Bus.h67 EntityAccessPtr access; member in struct:__anon8562
/vbox/src/VBox/Additions/x11/x11include/xproto-7.0.18/X11/
H A DXw32defs.h13 # define access _access macro
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/Library/
H A DMisc.py23 from os import access namespace
121 if not access(Directory, F_OK):
284 ## A dict which can access its keys and/or values orderly
/vbox/src/VBox/GuestHost/OpenGL/state_tracker/
H A Dstate_bufferobject.c23 b->access = GL_READ_WRITE_ARB;
588 crStateMapBufferARB(GLenum target, GLenum access) argument
614 switch (access) {
618 obj->access = access;
622 "glMapBufferARB(access)");
669 if (obj->access != GL_READ_ONLY_ARB) {
711 *params = obj->access;
/vbox/src/VBox/Additions/x11/x11include/4.3/programs/Xserver/hw/xfree86/common/
H A Dxf86Bus.h40 EntityAccessPtr access; member in struct:__anon3017
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/
H A Dxf86Bus.h68 EntityAccessPtr access; member in struct:__anon4665
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/
H A Dxf86Bus.h68 EntityAccessPtr access; member in struct:__anon4232
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/os2/
H A Dos2io.c149 PRInt32 access = OPEN_SHARE_DENYNONE; local
156 if (osflags & PR_SYNC) access |= OPEN_FLAGS_WRITE_THROUGH;
159 access |= OPEN_FLAGS_NOINHERIT;
162 access |= OPEN_ACCESS_READONLY;
164 access |= OPEN_ACCESS_WRITEONLY;
166 access |= OPEN_ACCESS_READWRITE;
198 access, /* Open mode and rights */
668 rv = access(name, 02);
671 rv = access(name, 04);
674 return access(nam
[all...]
/vbox/src/VBox/Additions/common/crOpenGL/array/
H A Darrayspu.c765 arrayspu_MapBufferARB(GLenum target, GLenum access) argument
767 return crStateMapBufferARB(target, access);
/vbox/src/libs/zlib-1.2.6/contrib/untgz/
H A Duntgz.c31 # define access(path,mode) _access(path,mode) macro
143 if (access(buffer,F_OK) == 0)

Completed in 64 milliseconds

123