Searched defs:Data (Results 101 - 125 of 344) sorted by relevance

1234567891011>>

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Variable/RuntimeDxe/
H A DVariable.h89 VOID *Data; member in struct:__anon11310
124 @param[in] Data Variable data.
141 IN VOID *Data,
342 @param DataSize Size of Data found. If size is less than the
344 @param Data Data pointer.
359 OUT VOID *Data
391 @param DataSize Size of Data found. If size is less than the
393 @param Data Data pointe
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/DxeCoreHobLib/
H A DHobLib.c319 If Data is NULL and DataLength > 0, then ASSERT().
324 @param Data The data to be copied into the data field of the GUID HOB.
335 IN VOID *Data,
333 BuildGuidDataHob( IN CONST EFI_GUID *Guid, IN VOID *Data, IN UINTN DataLength ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/DxeHobLib/
H A DHobLib.c352 If Data is NULL and DataLength > 0, then ASSERT().
357 @param Data The data to be copied into the data field of the GUID HOB.
368 IN VOID *Data,
366 BuildGuidDataHob( IN CONST EFI_GUID *Guid, IN VOID *Data, IN UINTN DataLength ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/PeiHobLib/
H A DHobLib.c400 If Data is NULL and DataLength > 0, then ASSERT().
405 @param Data The data to be copied into the data field of the GUID HOB.
416 IN VOID *Data,
422 ASSERT (Data != NULL || DataLength == 0);
429 return CopyMem (HobData, Data, DataLength);
414 BuildGuidDataHob( IN CONST EFI_GUID *Guid, IN VOID *Data, IN UINTN DataLength ) argument
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Application/Ping6/
H A DPing6.h39 UINT8 Data[1]; member in struct:_ICMP6_ECHO_REQUEST_REPLY
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/IScsiDxe/
H A DIScsiCHAP.c159 UINT8 *Data; local
177 Data = AllocateZeroPool (Len);
178 if (Data == NULL) {
184 NetbufQueCopy (&Conn->RspQue, 0, Len, Data);
189 KeyValueList = IScsiBuildKeyValueList ((CHAR8 *) Data, Len);
336 FreePool (Data);
H A DIScsiIbft.c98 @param[in] Data The data to add into the heap.
99 @param[in] Len Length of the Data in byte.
105 IN VOID *Data,
114 CopyMem (*Heap, Data, Len);
103 IScsiAddHeapItem( IN OUT UINT8 **Heap, IN VOID *Data, IN UINTN Len ) argument
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Ip6Dxe/
H A DIp6Icmp.c141 NET_BUF *Data; local
150 Data = NetbufDuplicate (Packet, NULL, IP6_MAX_HEADLEN);
151 if (Data == NULL) {
161 Icmp = (IP6_ICMP_INFORMATION_HEAD *) NetbufGetByte (Data, 0, NULL);
163 NetbufFree (Data);
193 Data,
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/IpSecDxe/
H A DIpSecConfigImpl.h58 VOID *Data; member in struct:__anon12556
138 @param[in] Data Pointer of Data.
145 IN VOID *Data
154 @param[in] Data Points to data to be copied to the buffer. The
155 Data type is related to the Type.
157 @param[in] DataSize The size of the Data.
158 @param[in, out] Buffer The buffer to store the Selector and Data.
160 @retval EFI_SUCCESS Copied the Selector and Data to a buffer successfully.
169 IN VOID *Data,
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/OptionRomPkg/CirrusLogic5430Dxe/
H A DCirrusLogic5430I2c.c33 @param Address The bit map of I2C Data or I2C Clock pins.
34 @param Data The date to write.
41 UINT8 Data
50 &Data
57 @param Address The bit map of I2C Data or I2C Clock pins.
68 UINT8 Data; local
76 &Data
78 return Data;
82 Read status of I2C Data and I2C Clock Pins.
85 @param Blt The bit map of I2C Data o
174 UINT8 Data; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/OvmfPkg/QemuVideoDxe/
H A DDriver.c429 @param Data TODO: add argument description
438 UINT8 Data
447 &Data
456 @param Data TODO: add argument description
465 UINT16 Data
474 &Data
493 UINT8 Data; local
501 &Data
503 return Data;
521 UINT16 Data; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/PcAtChipsetPkg/Library/SerialIoLib/
H A DSerialPortLib.c72 UINT8 Data; local
77 Data = (UINT8) (gData - (UINT8) 5);
87 OutputData = (UINT8) ((DLAB << 7) | (gBreakSet << 6) | (gParity << 3) | (gStop << 2) | Data);
99 OutputData = (UINT8) ((~DLAB << 7) | (gBreakSet << 6) | (gParity << 3) | (gStop << 2) | Data);
132 UINT8 Data; local
145 Data = IoRead8 ((UINT16) gUartBase + LSR_OFFSET);
146 } while ((Data & LSR_TXRDY) == 0);
173 UINT8 Data; local
186 Data = IoRead8 ((UINT16) gUartBase + LSR_OFFSET);
187 } while ((Data
212 UINT8 Data; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/VariableAuthenticated/RuntimeDxe/
H A DVariable.h91 VOID *Data; member in struct:__anon12727
158 @return Pointer to Variable Data.
186 @param[in] Data Variable data.
203 IN VOID *Data,
407 @param DataSize Size of Data found. If size is less than the
409 @param Data Data pointer.
424 OUT VOID *Data
456 @param DataSize Size of Data found. If size is less than the
458 @param Data Dat
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Include/Library/
H A DShellCommandLib.h393 VOID *Data; ///< The data structure format dependant upon Command. (not always used) member in struct:__anon12761
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/
H A DEditInputBar.c111 UINTN Data; member in union:__anon12801
153 Orig.Data = gST->ConOut->Mode->Attribute;
157 gST->ConOut->SetAttribute (gST->ConOut, New.Data);
180 gST->ConOut->SetAttribute (gST->ConOut, Orig.Data);
257 gST->ConOut->SetAttribute (gST->ConOut, Orig.Data);
/vbox/src/VBox/Devices/EFI/Firmware/VBoxPkg/VBoxVgaDxe/
H A DVBoxVgaI2c.c61 @param Address The bit map of I2C Data or I2C Clock pins.
62 @param Data The date to write.
69 UINT8 Data
78 &Data
85 @param Address The bit map of I2C Data or I2C Clock pins.
96 UINT8 Data; local
104 &Data
106 return Data;
110 Read status of I2C Data and I2C Clock Pins.
113 @param Blt The bit map of I2C Data o
202 UINT8 Data; local
[all...]
/vbox/src/VBox/Main/include/
H A DPerformanceImpl.h94 struct Data struct in class:PerformanceMetric
97 Data() function in struct:PerformanceMetric::Data
112 Data m;
210 struct Data struct in class:PerformanceCollector
212 Data() : hal(0) {}; function in struct:PerformanceCollector::Data
221 Data m;
/vbox/src/VBox/Main/src-server/
H A DAudioAdapterImpl.cpp42 struct AudioAdapter::Data struct in class:AudioAdapter
103 mData = new Data();
140 mData = new Data();
173 mData = new Data();
346 * nodes are assigned in the Data::Data() constructor and don't do it
H A DNetworkServiceRunner.cpp37 struct NetworkServiceRunner::Data struct in class:NetworkServiceRunner
39 Data(const char* aProcName) function in struct:NetworkServiceRunner::Data
52 m = new NetworkServiceRunner::Data(aProcName);
H A DParallelPortImpl.cpp37 struct ParallelPort::Data struct in class:ParallelPort
39 Data() function in struct:ParallelPort::Data
85 m = new Data;
121 m = new Data;
155 m = new Data;
H A DUSBDeviceFiltersImpl.cpp49 struct USBDeviceFilters::Data struct in class:USBDeviceFilters
51 Data(Machine *pMachine) function in struct:USBDeviceFilters::Data
56 ~Data()
108 m = new Data(aParent);
143 m = new Data(aParent);
185 m = new Data(aParent);
489 * nodes are assigned in the Data::Data() constructor and don't do it
541 const USBDeviceFilter::Data &filterData = (*it)->i_getData();
991 const USBDeviceFilter::Data
[all...]
/vbox/src/VBox/Main/src-server/darwin/
H A DHostDnsServiceDarwin.cpp34 struct HostDnsServiceDarwin::Data struct in class:HostDnsServiceDarwin
51 m = new HostDnsServiceDarwin::Data();
105 sctx.perform = HostDnsServiceDarwin::Data::performShutdownCallback;
251 void HostDnsServiceDarwin::Data::performShutdownCallback(void *info)
253 HostDnsServiceDarwin::Data *pThis = static_cast<HostDnsServiceDarwin::Data *>(info);
/vbox/src/VBox/Runtime/include/internal/
H A Ddir.h75 /** Set to indicate that the Data member contains unread data. */
96 WIN32_FIND_DATAW Data; member in struct:RTDIR
133 struct dirent Data; member in struct:RTDIR
/vbox/src/libs/xpcom18a4/ipc/ipcd/shared/src/
H A DipcMessage.h160 const char *Data() const { return (char *) mMsgHdr + IPC_MSG_HEADER_SIZE; } function in class:ipcMessage
/vbox/src/libs/xpcom18a4/xpcom/string/src/
H A DnsSubstring.cpp200 void* Data() const function in class:nsStringHeader

Completed in 82 milliseconds

1234567891011>>