/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/ |
H A D | send.c | 31 @param [in] buffer Address of a buffer containing the data to send. 33 @param [in] length Length of the buffer in bytes. 45 CONST void * buffer, 53 return sendto ( s, buffer, length, flags, NULL, 0 ); 43 send( int s, CONST void * buffer, size_t length, int flags ) argument
|
H A D | recv.c | 32 @param [in] buffer Address of a buffer to receive the data. 34 @param [in] length Length of the buffer in bytes. 38 @return This routine returns the number of valid bytes in the buffer, 46 void * buffer, 57 buffer, 44 recv( int s, void * buffer, size_t length, int flags ) argument
|
H A D | recvfrom.c | 32 @param [in] buffer Address of a buffer to receive the data. 34 @param [in] length Length of the buffer in bytes. 42 @return This routine returns the number of valid bytes in the buffer, 50 void * buffer, 83 buffer, 137 pData = (UINT8 *)buffer; 48 recvfrom( int s, void * buffer, size_t length, int flags, struct sockaddr * address, socklen_t * address_len ) argument
|
H A D | sendto.c | 32 @param [in] buffer Address of a buffer containing the data to send. 34 @param [in] length Length of the buffer in bytes. 50 const void * buffer, 84 pData = buffer; 48 sendto( int s, const void * buffer, size_t length, int flags, const struct sockaddr * to, socklen_t tolen ) argument
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/cplus/ |
H A D | rcascii.h | 87 ** The caller is supplying the buffer, the runtime is doing all 99 ** string. Put the result in 'buffer'. Return the number 100 ** of bytes moved into 'buffer'. 'buffer' will always be 104 char *buffer, PRSize length, const char *fmt, ...); 106 virtual char *Sm_append(char *buffer, const char *fmt, ...); 121 ** The runtime is supplying the buffer. The object has state - the 122 ** buffer. Each operation must run to completion before the object 123 ** can be reused. When it is, the buffer is reset (whatever that 149 char *buffer; local [all...] |
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/ |
H A D | formattm.c | 46 char buffer[256]; local 52 (void)PR_FormatTime(buffer, sizeof(buffer), 54 printf("%s\n", buffer); 55 (void)PR_FormatTimeUSEnglish(buffer, sizeof(buffer), 57 printf("%s\n", buffer);
|
H A D | version.c | 56 char buffer[100]; local 102 buffer, sizeof(buffer), "%d %b %Y %H:%M:%S", &exploded); 103 (void)PR_fprintf(err, " Build time: %s GMT\n", buffer);
|
H A D | fsync.c | 62 PRUint8 *buffer; local 104 buffer = (PRUint8*)PR_CALLOC(1024); 105 if (NULL == buffer) 107 PL_FPrintError(err, "Cannot allocate buffer"); 111 for (index = 0; index < sizeof(buffer); ++index) 112 buffer[index] = (PRUint8)index; 119 PR_Write(file, buffer, 1024); 141 PR_DELETE(buffer);
|
/vbox/src/libs/xpcom18a4/xpcom/tests/utils/ |
H A D | WhatError.cpp | 46 char buffer[100]; local 52 sprintf(buffer, "%d", errorCode); 53 sscanf( buffer, "%d", &errorCode);
|
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/image/ |
H A D | pxe_image.c | 45 userptr_t buffer = real_to_user ( 0, 0x7c00 ); local 50 if ( ( rc = prep_segment ( buffer, image->len, image->len ) ) != 0 ) { 57 memcpy_user ( buffer, 0, image->data, 0, image->len );
|
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/ |
H A D | lineconsole.h | 17 /** Data buffer 21 char *buffer; member in struct:line_console 22 /** Current index within buffer */ 24 /** Length of buffer 26 * The final character of the buffer will only ever be used as
|
/vbox/src/VBox/Devices/PC/ipxe/src/core/ |
H A D | blockdev.c | 38 * @v buffer Data buffer 39 * @v len Length of data buffer 44 userptr_t buffer, size_t len ) { 52 rc = op ( object, data, lba, count, buffer, len ); 69 * @v buffer Data buffer 70 * @v len Length of data buffer 75 userptr_t buffer, size_t len ) { 83 rc = op ( object, data, lba, count, buffer, le 42 block_read( struct interface *control, struct interface *data, uint64_t lba, unsigned int count, userptr_t buffer, size_t len ) argument 73 block_write( struct interface *control, struct interface *data, uint64_t lba, unsigned int count, userptr_t buffer, size_t len ) argument [all...] |
/vbox/src/VBox/Installer/win/InstallHelper/ |
H A D | VBoxCommon.cpp | 31 int swprintf_s(WCHAR *buffer, size_t cbBuffer, const WCHAR *format, ...) argument 36 ret = _vsnwprintf(buffer, cbBuffer, format, va);
|
/vbox/src/libs/libxml2-2.6.31/doc/examples/ |
H A D | io1.c | 78 * @buffer: where to store data 86 sqlRead(void * context, char * buffer, int len) { argument 89 if ((context == NULL) || (buffer == NULL) || (len < 0)) 93 memcpy(buffer, ptr, len);
|
/vbox/src/libs/xpcom18a4/xpcom/io/ |
H A D | nsScriptableInputStream.cpp | 68 char *buffer = nsnull; local 76 buffer = (char*)nsMemory::Alloc(count+1); // make room for '\0' 77 if (!buffer) return NS_ERROR_OUT_OF_MEMORY; 80 rv = mInputStream->Read(buffer, count, &amtRead); 82 nsMemory::Free(buffer); 86 buffer[amtRead] = '\0'; 87 *_retval = buffer;
|
H A D | nsByteArrayInputStream.cpp | 44 nsByteArrayInputStream::nsByteArrayInputStream (char *buffer, PRUint32 bytes) argument 45 : _buffer (buffer), _nbytes (bytes), _pos (0) 82 NS_ASSERTION (_buffer != NULL, "Stream buffer has been released - there's an ownership problem somewhere!"); 112 NS_ASSERTION (_buffer != NULL, "Stream buffer has been released - there's an ownership problem somewhere!"); 151 NS_NewByteArrayInputStream (nsIByteArrayInputStream* *aResult, char * buffer, unsigned long bytes) argument 156 nsIByteArrayInputStream * stream = new nsByteArrayInputStream (buffer, bytes);
|
/vbox/src/libs/xpcom18a4/xpcom/typelib/xpidl/macplugin/ |
H A D | mac_console.c | 90 * extern long WriteCharsToConsole(char *buffer, long n); 95 * char *buffer: Pointer to the buffer to be written. 96 * long n: The length of the buffer to be written. 101 long WriteCharsToConsole(char *buffer, long n) argument 115 BlockMoveData(buffer, (char *)ptr + mac_console_count, n); 124 * extern long ReadCharsFromConsole(char *buffer, long n); 126 * Reads from the Console into a buffer. This function is called by 129 * char *buffer: Pointer to the buffer whic 136 ReadCharsFromConsole(char *buffer, long n) argument [all...] |
/vbox/src/VBox/Devices/Network/slirp/ |
H A D | ext.h | 58 char buffer[1024]; local 59 memset(buffer, 0, 1024); 60 RTStrPrintfV(buffer, 1024, format, args); 62 LogRel(("NAT:EXT: %s\n", buffer));
|
/vbox/src/VBox/HostServices/SharedOpenGL/crserverlib/ |
H A D | server_bufferobject.c | 37 void SERVER_DISPATCH_APIENTRY crServerDispatchDeleteBuffersARB( GLsizei n, const GLuint * buffer ) 39 crStateDeleteBuffersARB( n, buffer ); 70 crServerDispatchBindBufferARB(GLenum target, GLuint buffer) argument 72 crStateBindBufferARB(target, buffer); 73 cr_server.head_spu->dispatch_table.BindBufferARB(target, crStateGetBufferHWID(buffer)); 77 crServerDispatchIsBufferARB(GLuint buffer) argument 81 GLboolean retval = crStateIsBufferARB(buffer);
|
H A D | server_getteximage.c | 19 GLvoid *buffer = NULL; local 27 /*pixels are actually a pointer to location of 8byte network pointer in hgcm buffer 79 if (size && (buffer = crAlloc(size))) { 84 cr_server.head_spu->dispatch_table.GetTexImage(target, level, format, type, buffer); 85 crServerReturnValue( buffer, size ); 86 crFree(buffer); 103 GLvoid *buffer=NULL; local 120 if (size && (buffer = crAlloc(size))) { 122 cr_server.head_spu->dispatch_table.GetCompressedTexImageARB(target, level, buffer); 123 crServerReturnValue( buffer, siz [all...] |
/vbox/src/VBox/Devices/PC/ipxe/src/image/ |
H A D | elf.c | 58 userptr_t buffer; local 84 buffer = phys_to_user ( dest ); 93 if ( ( rc = prep_segment ( buffer, phdr->p_filesz, 105 memcpy_user ( buffer, 0, image->data, phdr->p_offset, phdr->p_filesz );
|
/vbox/src/VBox/GuestHost/OpenGL/include/state/ |
H A D | cr_feedback.h | 31 GLfloat *buffer; member in struct:__anon16189 37 GLuint *buffer; member in struct:__anon16190
|
/vbox/src/VBox/Additions/haiku/SharedFolders/ |
H A D | vboxsf.h | 80 PSHFLDIRINFO buffer_start, buffer; member in struct:vboxsf_dir_cookie
|
/vbox/src/VBox/Additions/x11/x11include/4.3/include/extensions/ |
H A D | Xdbe.h | 66 Window window; /* window that buffer belongs to */ 74 XdbeBackBuffer buffer; /* resource id */ member in struct:__anon2613 106 XdbeBackBuffer /* buffer */ 147 XdbeBackBuffer /* buffer */
|
/vbox/src/libs/libxml2-2.6.31/win32/wince/ |
H A D | wincecompat.c | 22 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)); 50 char *getcwd( char *buffer, unsigned int size) argument
|