Searched defs:File (Results 51 - 61 of 61) sorted by relevance

123

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Library/DxeNetLib/
H A DDxeNetLib.c307 @param[in] File The file that contains the current log
308 @param[in] Line The line of code in the File that contains the current log
320 IN UINT8 *File,
405 "Tiano %a: %a (Line: %d File: %a)",
409 File
481 @param File The file that contains the log.
495 IN UINT8 *File,
534 File,
317 SyslogBuildPacket( IN UINT32 Level, IN UINT8 *Module, IN UINT8 *File, IN UINT32 Line, IN UINT8 *Message, IN UINT32 BufLen, OUT CHAR8 *Buf ) argument
492 NetDebugOutput( IN UINT32 Level, IN UINT8 *Module, IN UINT8 *File, IN UINT32 Line, IN UINT8 *Message ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/DevicePathDxe/
H A DDevicePathFromText.c2711 Converts a text device path node to File device path structure.
2715 @return A pointer to the newly-created File device path structure.
2723 FILEPATH_DEVICE_PATH *File; local
2725 File = (FILEPATH_DEVICE_PATH *) CreateDeviceNode (
2731 StrCpy (File->PathName, TextDeviceNode);
2733 return (EFI_DEVICE_PATH_PROTOCOL *) File;
/vbox/src/VBox/HostServices/SharedFolders/testcase/
H A DtstSharedFolderService.cpp213 extern int testRTFileClose(RTFILE File) argument
215 /* RTPrintf("%s: File=%p\n", __PRETTY_FUNCTION__, File); */
216 testRTFileCloseFile = File;
224 extern int testRTFileFlush(RTFILE File) argument
226 /* RTPrintf("%s: File=%p\n", __PRETTY_FUNCTION__, File); */
227 testRTFileFlushFile = File;
284 extern int testRTFileRead(RTFILE File, void *pvBuf, size_t cbToRead, argument
287 /* RTPrintf("%s : File
308 testRTFileSetMode(RTFILE File, RTFMODE fMode) argument
318 testRTFileSetSize(RTFILE File, uint64_t cbSize) argument
329 testRTFileSetTimes(RTFILE File, PCRTTIMESPEC pAccessTime, PCRTTIMESPEC pModificationTime, PCRTTIMESPEC pChangeTime, PCRTTIMESPEC pBirthTime) argument
352 testRTFileUnlock(RTFILE File, int64_t offLock, uint64_t cbLock) argument
364 testRTFileWrite(RTFILE File, const void *pvBuf, size_t cbToWrite, size_t *pcbWritten) argument
[all...]
/vbox/src/VBox/Frontends/VBoxManage/
H A DVBoxInternalManage.cpp749 static int partRead(RTFILE File, PHOSTPARTITIONS pPart) argument
762 rc = RTFileReadAt(File, 0, &aBuffer, sizeof(aBuffer), NULL);
775 rc = RTFileReadAt(File, sector_size, &partitionTableHeader, sector_size, NULL);
820 rc = RTFileReadAt(File, 1024 + currentEntry*partitionEntrySize, &partitionEntry, partitionEntrySize, NULL);
922 rc = RTFileReadAt(File, (uStart + uOffset) * 512, &aBuffer, sizeof(aBuffer), NULL);
1243 RTMsgError("File '%s' is no fixed/removable medium device", rawdisk.c_str());
1322 RTMsgError("File '%s' is no block device", rawdisk.c_str());
1371 RTMsgError("File '%s' is neither block device nor regular file", rawdisk.c_str());
1409 RTMsgError("File '%s' is no block or char device", rawdisk.c_str());
1448 RTMsgError("File '
[all...]
H A DVBoxManageInfo.cpp2461 Bstr File; local
2462 CHECK_ERROR_RET(machine, COMGETTER(VideoCaptureFile)(File.asOutParam()), rc);
2475 RTPrintf("vcpfile=\"%ls\"\n", File.raw());
2493 RTPrintf("Capture file: %ls\n", File.raw());
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/shader/
H A Dprog_instruction.h239 GLuint File:4; /**< One of the PROGRAM_* register file values. */ member in struct:prog_src_register
286 GLuint File:4; member in struct:prog_dst_register
/vbox/include/iprt/
H A Dnet.h467 /** 6c - File name / more DHCP options. */
626 uint8_t File[128]; member in struct:RTNETDHCP
/vbox/src/VBox/Storage/
H A DVD.cpp70 /** File handle. */
71 RTFILE File; member in struct:VDIIOFALLBACKSTORAGE
3932 int rc = RTFileOpen(&pStorage->File, pszLocation, fOpen);
3950 RTFileClose(pStorage->File);
3986 return RTFileGetSize(pStorage->File, pcbSize);
3996 return RTFileSetSize(pStorage->File, cbSize);
4007 return RTFileWriteAt(pStorage->File, uOffset, pvBuf, cbWrite, pcbWritten);
4018 return RTFileReadAt(pStorage->File, uOffset, pvBuf, cbRead, pcbRead);
4028 return RTFileFlush(pStorage->File);
/vbox/src/VBox/Runtime/include/internal/
H A DldrPE.h944 } File; member in union:_IMAGE_AUX_SYMBOL
1008 } File; member in union:_IMAGE_AUX_SYMBOL_EX
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dwinnt.h2305 * File formats definitions
2322 WORD e_lfarlc; /* 18: File address of relocation table */
2824 } File; member in union:_IMAGE_AUX_SYMBOL
4537 /* File attribute flags */
4557 /* File notification flags */
4594 /* File alignments (NT) */
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Dwinnt.h2523 * File formats definitions
2540 WORD e_lfarlc; /* 18: File address of relocation table */
3039 } File; member in union:_IMAGE_AUX_SYMBOL
4658 /* File attribute flags */
4678 /* File notification flags */
4712 /* File alignments (NT) */

Completed in 1088 milliseconds

123