/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/wine/ |
H A D | wpp.h | 47 void *(*open)( const char *filename, int type ); member in struct:wpp_callbacks
|
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/wine/ |
H A D | wpp.h | 47 void *(*open)( const char *filename, int type ); member in struct:wpp_callbacks
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/ |
H A D | dri3.h | 60 dri3_open_proc open; member in struct:dri3_screen_info
|
H A D | dmxparse.h | 159 DMXConfigTokenPtr open; member in struct:_DMXConfigParam 162 DMXConfigTokenPtr end; /* Either open/close OR end */ 187 DMXConfigTokenPtr open; member in struct:_DMXConfigVirtual
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/ |
H A D | dri3.h | 58 dri3_open_proc open; member in struct:dri3_screen_info
|
H A D | dmxparse.h | 159 DMXConfigTokenPtr open; member in struct:_DMXConfigParam 162 DMXConfigTokenPtr end; /* Either open/close OR end */ 187 DMXConfigTokenPtr open; member in struct:_DMXConfigVirtual
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.15.0/ |
H A D | dri3.h | 55 dri3_open_proc open; member in struct:dri3_screen_info
|
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/ |
H A D | open.h | 23 * Parameter list for open() is: 30 * Parameter list for open() is: 37 * Parameter list for open() is: 60 int ( * open ) ( struct interface *intf, struct uri *uri ); member in struct:uri_opener 82 int ( * open ) ( struct interface *intf, struct sockaddr *peer, member in struct:socket_opener
|
/vbox/src/VBox/Frontends/VirtualBox/src/widgets/ |
H A D | UILineTextEdit.cpp | 61 this, SLOT(open())); 84 void UITextEditor::open() function in class:UITextEditor 86 QString fileName = QIFileDialog::getOpenFileName(vboxGlobal().documentsPath(), tr("Text (*.txt);;All (*.*)"), this, tr("Select a file to open...")); 90 if (file.open(QFile::ReadOnly))
|
/vbox/src/libs/libxml2-2.6.31/win32/wince/ |
H A D | wincecompat.c | 15 "","File exists","Cross-device link","","","","Invalid argument","","Too many open files", 32 int open(const char *filename,int oflag, ...) function
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/cplus/ |
H A D | rcio.h | 61 open = PR_TRANSMITFILE_KEEP_OPEN, /* socket is left open after file enumerator in enum:__anon17208
|
/vbox/src/VBox/Main/src-server/win/ |
H A D | svchlp.cpp | 89 int SVCHlpClient::open(const char *aName) function in class:SVCHlpClient
|
/vbox/src/VBox/Devices/PC/ipxe/src/core/ |
H A D | posix_io.c | 27 #include <ipxe/open.h> 40 /** An open file */ 44 /** List of open files */ 63 /** List of open files */ 67 * Free open file 171 int open ( const char *uri_string ) { function 195 /* Wait for open to succeed or fail */ 206 /* Add to list of open files. List takes reference ownership. */ 334 /* Remove from list of open files and drop reference */
|
/vbox/src/libs/zlib-1.2.6/contrib/iostream/ |
H A D | zfstream.cpp | 18 gzfilebuf *gzfilebuf::open( const char *name, function in class:gzfilebuf 270 void gzfilestream_common::open( const char *name, int io_mode ) { function in class:gzfilestream_common 272 if ( !buffer.open( name, io_mode ) ) 300 gzfilestream_common::open( name, io_mode ); 320 gzfilestream_common::open( name, io_mode );
|
/vbox/src/libs/zlib-1.2.6/contrib/iostream3/ |
H A D | zfstream.cc | 33 // (i.e. attached streams should be left open at this stage) 51 gzfilebuf::open(const char *name, function in class:gzfilebuf 54 // Fail if file already open 66 // Attempt to open file 82 // Fail if file already open 109 // Fail immediately if no file is open 129 // Convert int open mode to mode string 378 // Initialize stream buffer and open file 384 this->open(name, mode); 398 gzifstream::open(cons function in class:gzifstream 453 gzofstream::open(const char* name, function in class:gzofstream [all...] |
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/msvcrt/ |
H A D | io.h | 175 extern int __cdecl open(const char*,int,...) __attribute__((alias("_open"))); 178 #define open _open macro
|
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/ |
H A D | io.h | 172 extern int __cdecl open(const char*,int,...) __attribute__((alias("_open"))); 175 #define open _open macro
|
/vbox/src/libs/xpcom18a4/nsprpub/lib/prstreams/ |
H A D | prstrms.cpp | 123 PRfilebuf::open(const char *name, int mode, int flags) function in class:PRfilebuf 126 return 0; // error if already open 362 if (!rdbuf()->open(name, (mode|ios::in), flags)) 394 PRifstream::open(const char * name, int mode, int flags) function in class:PRifstream 396 if (is_open() || !(rdbuf()->open(name, (mode|ios::in), flags))) 428 if (!rdbuf()->open(name, (mode|ios::out), flags)) 460 PRofstream::open(const char * name, int mode, int flags) function in class:PRofstream 462 if (is_open() || !(rdbuf()->open(name, (mode|ios::out), flags))) 498 if (!rdbuf()->open(name, (mode|(ios::in|ios::out)), flags)) 532 PRfstream::open(cons function in class:PRfstream [all...] |
/vbox/src/libs/zlib-1.2.6/contrib/iostream2/ |
H A D | zstream.h | 55 izstream(FILE* fp) : m_fp(0) { open(fp); } 56 izstream(const char* name) : m_fp(0) { open(name); } 60 * open() can be used to read a file which is not in gzip format; 65 void open(const char* name) { function in class:izstream 70 void open(FILE* fp) { function in class:izstream 162 open(fp, level); 166 open(name, level); 177 void open(const char* name, int level = Z_DEFAULT_COMPRESSION) { function in class:ozstream 184 /* open from a FILE pointer. 186 void open(FIL function in class:ozstream [all...] |
/vbox/src/VBox/Additions/x11/x11include/xproto-7.0.18/X11/ |
H A D | Xw32defs.h | 41 # define open _open macro
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Uefi/ |
H A D | SysCalls.c | 101 /* Mark that an open file is to be deleted when closed. */ 117 /** The isatty() function tests whether fildes, an open file descriptor, 122 EBADF if fildes is not a valid open FD. 220 subsequent calls to open() or other functions that allocate file 244 fd = open(path, O_WRONLY, 0); 257 /** The fcntl() function shall perform the operations described below on open 262 numbered available (that is, not already open) file 265 shall refer to the same open file description as the original 268 to keep the file open across calls to one of the exec functions. 276 is 0, the file shall remain open acros 583 open( function [all...] |
/vbox/src/VBox/Devices/Network/lwip-new/src/netif/ppp/ |
H A D | ppp_impl.h | 251 void (*open) (int unit); member in struct:protent
|
/vbox/src/libs/xpcom18a4/xpcom/obsolete/ |
H A D | nsFileStream.h | 342 void open( function in class:nsFileClient
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/ |
H A D | dmxparse.h | 161 DMXConfigTokenPtr open; member in struct:_DMXConfigParam 164 DMXConfigTokenPtr end; /* Either open/close OR end */ 189 DMXConfigTokenPtr open; member in struct:_DMXConfigVirtual
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/ |
H A D | dmxparse.h | 160 DMXConfigTokenPtr open; member in struct:_DMXConfigParam 163 DMXConfigTokenPtr end; /* Either open/close OR end */ 188 DMXConfigTokenPtr open; member in struct:_DMXConfigVirtual
|