Searched defs:file (Results 76 - 100 of 164) sorted by relevance

1234567

/vbox/src/libs/zlib-1.2.6/test/
H A Dminigzip.c9 * full-featured gzip. No attempt is made to deal with file systems
12 * real thing. On MSDOS, use only on file names without extension
38 # define SET_BINARY_MODE(file) setmode(fileno(file), O_BINARY)
40 # define SET_BINARY_MODE(file)
50 # define fileno(file) file->__file
167 FILE *file; member in struct:gzFile_s
218 gz->file = path == NULL ? fdopen(fd, gz->write ? "wb" : "rb") :
220 if (gz->file
546 gzFile file; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/
H A Dres_send.c136 # define Aerror(file, string, error, address) /*empty*/
137 # define Perror(file, string, error) /*empty*/
147 FILE *file,
156 fprintf(file, "res_send: %s ([%s].%u): %s\n",
168 FILE *file,
176 fprintf(file, "res_send: %s: %s\n",
146 Aerror( FILE *file, char *string, int error, struct sockaddr_in address ) argument
167 Perror( FILE *file, char *string, int error ) argument
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/msvcrt/
H A Dstdio.h6 * This file is in the public domain.
19 /* file._flag flags */
40 /* more file._flag flags, but these conflict with Unix */
253 static inline int fileno(FILE* file) { return _fileno(file); } argument
255 static inline int pclose(FILE* file) { return _pclose(file); } argument
266 static inline int getw(FILE* file) { return _getw(file); } argument
267 static inline int putw(int val, FILE* file) { retur argument
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/util/
H A Dzbin.c75 FILE *file; local
78 file = fopen ( filename, "r" );
79 if ( ! file ) {
85 if ( fstat ( fileno ( file ), &stat ) < 0 ) {
99 if ( fread ( *buf, 1, *len, file ) != *len ) {
105 fclose ( file );
109 if ( file )
110 fclose ( file );
128 fprintf ( stderr, ".zinfo file %s has invalid length %zd\n",
420 fprintf ( stderr, "Syntax: %s file
[all...]
/vbox/src/VBox/GuestHost/OpenGL/include/
H A Dcr_pack.h4 * See the file LICENSE.txt for information on redistributing this software.
51 typedef void (*CRPackErrorHandlerFunc)(int line, const char *file, GLenum error, const char *info);
91 char *file; /**< for debugging only */ member in struct:CRPackContext_t
128 extern DECLEXPORT(void) crPackSetBufferDEBUG( const char *file, int line, CRPackContext *pc, CRPackBuffer *buffer );
/vbox/src/VBox/Additions/linux/drm/
H A Dvbox_main.c1 /** @file $Id$
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
69 struct drm_file *file,
431 int vbox_dumb_create(struct drm_file *file, argument
450 ret = drm_gem_handle_create(file, gobj, &handle);
461 int vbox_dumb_destroy(struct drm_file *file, argument
467 return drm_gem_handle_delete(file, handle);
504 vbox_dumb_mmap_offset(struct drm_file *file, argument
68 vbox_user_framebuffer_create_handle(struct drm_framebuffer *fb, struct drm_file *file, unsigned int *handle) argument
[all...]
/vbox/src/VBox/Additions/x11/x11include/libdrm-2.4.13/
H A Dradeon_cs.h95 const char *file,
99 const char *file,
106 void (*cs_print)(struct radeon_cs *cs, FILE *file);
138 const char *file,
142 return cs->csm->funcs->cs_begin(cs, ndw, file, func, line);
146 const char *file,
150 return cs->csm->funcs->cs_end(cs, file, func, line);
173 static inline void radeon_cs_print(struct radeon_cs *cs, FILE *file) argument
175 cs->csm->funcs->cs_print(cs, file);
136 radeon_cs_begin(struct radeon_cs *cs, uint32_t ndw, const char *file, const char *func, int line) argument
145 radeon_cs_end(struct radeon_cs *cs, const char *file, const char *func, int line) argument
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/
H A Dstdio.h6 * This file is in the public domain.
29 /* file._flag flags */
50 /* more file._flag flags, but these conflict with Unix */
224 static inline int fileno(FILE* file) { return _fileno(file); } argument
226 static inline int pclose(FILE* file) { return _pclose(file); } argument
237 static inline int getw(FILE* file) { return _getw(file); } argument
238 static inline int putw(int val, FILE* file) { retur argument
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/cplus/tests/
H A Dranfile.cpp5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
24 * Alternatively, the contents of this file may be used under the terms of
28 * of those above. If you wish to allow use of your version of this file only
30 * use your version of this file under the terms of the MPL, indicate your
33 * the provisions above, a recipient may use your version of this file under
172 ** Hammer on the file I/O system
177 ** Creates, accesses and deletes a file
179 ** (Currently) must have file create permission in "/usr/tmp".
183 ** 1) Creates a (hopefully) unique file i
197 RCFileIO file; local
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/os2/
H A Dos2io.c5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
24 * Alternatively, the contents of this file may be used under the terms of
28 * of those above. If you wish to allow use of your version of this file only
30 * use your version of this file under the terms of the MPL, indicate your
33 * the provisions above, a recipient may use your version of this file under
51 * calls since EMX remaps file/socket
53 * 04/27/2000 IBM Corp. Changed open file to be more like NT and
135 * _PR_MD_OPEN() -- Open a file
141 * Mode seems to be passed in as a unix style file permission
148 HFILE file; local
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/windows/
H A Dw16io.c5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
24 * Alternatively, the contents of this file may be used under the terms of
28 * of those above. If you wish to allow use of your version of this file only
30 * use your version of this file under the terms of the MPL, indicate your
33 * the provisions above, a recipient may use your version of this file under
59 ** calls must be issued from the .EXE file; calling them from the .DLL
85 ** _PR_MD_OPEN() -- Open a file
94 PRInt32 file; local
121 ** Open the file
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Daccept.c5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
24 * Alternatively, the contents of this file may be used under the terms of
28 * of those above. If you wish to allow use of your version of this file only
30 * use your version of this file under the terms of the MPL, indicate your
33 * the provisions above, a recipient may use your version of this file under
46 ** 04-Jun-97 AGarcia - Reconvert test file to return a 0 for PASS and a 1 for FAIL
113 void Test_Assert(const char *msg, const char *file, PRIntn line) argument
117 PR_fprintf(output, "@%s:%d ", file, line);
H A Dmultiwait.c5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
24 * Alternatively, the contents of this file may be used under the terms of
28 * of those above. If you wish to allow use of your version of this file only
30 * use your version of this file under the terms of the MPL, indicate your
33 * the provisions above, a recipient may use your version of this file under
78 static void _MW_Assert(const char *s, const char *file, PRIntn ln) argument
81 PR_Assert(s, file, ln);
H A Dranfile.c5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
24 * Alternatively, the contents of this file may be used under the terms of
28 * of those above. If you wish to allow use of your version of this file only
30 * use your version of this file under the terms of the MPL, indicate your
33 * the provisions above, a recipient may use your version of this file under
140 ** Hammer on the file I/O system
145 ** Creates, accesses and deletes a file
147 ** (Currently) must have file create permission in "/usr/tmp".
151 ** 1) Creates a (hopefully) unique file i
167 PRFileDesc *file = NULL; local
[all...]
/vbox/src/libs/xpcom18a4/xpcom/MoreFiles/
H A DMoreFilesX.h15 * The contents of this file are subject to the Mozilla Public License Version
16 * 1.1 (the "License"); you may not use this file except in compliance with
35 * Alternatively, the contents of this file may be used under the terms of
39 * of those above. If you wish to allow use of your version of this file only
41 * use your version of this file under the terms of the MPL, indicate your
44 * the provisions above, a recipient may use your version of this file under
93 FileInfo file; member in union:FinderInfo
100 ExtendedFileInfo file; member in union:ExtendedFinderInfo
282 destination fork of open file forks and makes sure the destination EOF
285 srcRefNum --> The source file referenc
[all...]
/vbox/src/libs/xpcom18a4/xpcom/reflect/xptinfo/src/
H A DxptiManifest.cpp5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
26 * Alternatively, the contents of this file may be used under the terms of
30 * of those above. If you wish to allow use of your version of this file only
32 * use your version of this file under the terms of the MPL, indicate your
35 * the provisions above, a recipient may use your version of this file under
46 static const char g_Disclaimer[] = "# Generated file. ** DO NOT EDIT! **";
152 // write file header comments
207 const xptiFile& file = aWorkingSet->GetFileAt(i); local
209 LL_L2UI(size32, file
[all...]
/vbox/src/libs/xpcom18a4/xpcom/typelib/xpidl/
H A Dxpidl_header.c5 * The contents of this file are subject to the Netscape Public License
6 * Version 1.1 (the "License"); you may not use this file except in
24 * Alternatively, the contents of this file may be used under the terms of
28 * of those above. If you wish to allow use of your version of this file only
30 * use your version of this file under the terms of the NPL, indicate your
33 * the provisions above, a recipient may use your version of this file under
64 fprintf(state->file, "/*\n * DO NOT EDIT. THIS FILE IS GENERATED FROM"
66 fprintf(state->file,
74 fputc('\n', state->file);
90 fprintf(state->file,
125 write_classname_iid_define(FILE *file, const char *className) argument
[all...]
H A Dxpidl_idl.c5 * The contents of this file are subject to the Netscape Public License
6 * Version 1.1 (the "License"); you may not use this file except in
25 * Alternatively, the contents of this file may be used under the terms of
29 * of those above. If you wish to allow use of your version of this file only
31 * use your version of this file under the terms of the NPL, indicate your
34 * the provisions above, a recipient may use your version of this file under
73 msg_callback(int level, int num, int line, const char *file, argument
87 if (!file)
88 file = "<unknown file>";
815 char *msg, *file; local
[all...]
H A Dxpidl_java.c3 * The contents of this file are subject to the Mozilla Public
4 * License Version 1.1 (the "License"); you may not use this file
41 write_classname_iid_define(FILE *file, const char *className) argument
46 fputs("NS_", file);
53 fputc(toupper(*iidName++), file);
56 fputs("_IID", file);
88 fprintf(state->file,
102 state->file);
104 fprintf(state->file,
105 " *\n * This file wa
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/BaseCryptLib/SysCall/
H A DCrtWrapper.c1 /** @file
311 int X509_load_cert_file (VOID *ctx, const char *file, int type) argument
316 int X509_load_crl_file (VOID *ctx, const char *file, int type) argument
/vbox/src/VBox/Devices/Audio/
H A Dalsaaudio.c1111 static void alsa_error_handler(const char *file, int line, const char *function, argument
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/wine/
H A Dtest.h67 extern void winetest_set_location( const char* file, int line );
124 #define ok_(file, line) (winetest_set_location(file, line), 0) ? (void)0 : winetest_ok
125 #define skip_(file, line) (winetest_set_location(file, line), 0) ? (void)0 : winetest_skip
126 #define win_skip_(file, line) (winetest_set_location(file, line), 0) ? (void)0 : winetest_win_skip
127 #define trace_(file, line) (winetest_set_location(file, line), 0) ? (void)0 : winetest_trace
181 * directly into the generated testlist.c file
285 winetest_set_location( const char* file, int line ) argument
[all...]
/vbox/src/VBox/HostDrivers/VBoxPci/linux/
H A DVBoxPci-linux.c2 /** @file
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
307 static struct file* vboxPciFileOpen(const char* path, int flags)
309 struct file* filp = NULL;
331 static void vboxPciFileClose(struct file* file) argument
333 filp_close(file, NULL);
336 static int vboxPciFileWrite(struct file* fil argument
[all...]
/vbox/src/VBox/HostServices/SharedOpenGL/dlm/
H A Ddlm.c730 void crdlm_error(int line, const char *file, GLenum error, const char *info) argument
733 (*ErrorCallback)(line, file, error, info);
/vbox/src/VBox/Frontends/VirtualBox/src/net/
H A DUINetworkReply.cpp2 /** @file
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
93 static int saveCertificate(QFile &file, const QByteArray &certificate);
310 /* Open certificates file: */
311 QFile file(strFullCertificateFileName);
312 bool fFileOpened = file.open(QIODevice::ReadOnly);
315 /* Read certificates file: */
318 /* Parse the file conten
577 saveCertificate(QFile &file, const QByteArray &certificate) argument
[all...]

Completed in 126 milliseconds

1234567