/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Platform/Generic/RuntimeDxe/StatusCode/Lib/Include/ |
RtPlatformStatusCodeLib.h | 51 IN EFI_STATUS_CODE_DATA * Data OPTIONAL
|
RtPort80StatusCodeLib.h | 40 IN EFI_STATUS_CODE_DATA * Data OPTIONAL
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Platform/Generic/RuntimeDxe/StatusCode/Lib/RtPlatformStatusCode/Nt32/ |
RtPlatformStatusCode.c | 58 IN EFI_STATUS_CODE_DATA * Data OPTIONAL
76 RtMemoryReportStatusCode (CodeType, Value, Instance, CallerId, Data);
84 BsDataHubReportStatusCode (CodeType, Value, Instance, CallerId, Data);
91 return mPeiReportStatusCode (CodeType, Value, Instance, CallerId, Data);
127 // Play any prior status codes to the data hub.
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Platform/Generic/RuntimeDxe/StatusCode/Lib/RtPort80StatusCode/ |
RtPort80StatusCode.c | 35 IN EFI_STATUS_CODE_DATA * Data OPTIONAL
|
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Include/Guid/ |
DataHubStatusCodeRecord.h | 2 GUID used to identify Data Hub records logged by Status Code Protocol.
27 /// The Data Hub data record that is used to store all the parameters passed into
54 /// Additional status code data.
56 EFI_STATUS_CODE_DATA Data;
|
LegacyDevOrder.h | 34 /// Length = sizeof (UINT16) + sizeof (Data)
37 UINT16 Data[1];
|
/device/linaro/bootloader/edk2/MdeModulePkg/Include/Library/ |
OemHookStatusCodeLib.h | 63 @param Data This optional parameter may be used to pass additional data.
75 IN EFI_STATUS_CODE_DATA *Data OPTIONAL
|
/device/linaro/bootloader/edk2/MdeModulePkg/Library/OemHookStatusCodeLibNull/ |
OemHookStatusCodeLibNull.c | 45 @param Data This optional parameter may be used to pass additional data
57 IN EFI_STATUS_CODE_DATA *Data OPTIONAL
|
/device/linaro/bootloader/edk2/MdePkg/Include/Uefi/ |
UefiAcpiDataTable.h | 2 UEFI ACPI Data Table Definition.
43 /// Describes the size of Data (in bytes) and does not include the size of the header.
49 UINT8 Data[1];
|
/device/linaro/bootloader/edk2/NetworkPkg/Application/IpsecConfig/ |
ForEach.h | 25 @param[in] Data The pointer to the corresponding data.
34 IN VOID *Data,
|
/device/linaro/bootloader/edk2/SecurityPkg/Tcg/MemoryOverwriteRequestControlLock/ |
TcgMorLockSmm.c | 31 @param DataSize As input, point to the maximum size of return Data-Buffer.
32 As output, point to the actual size of the returned Data-Buffer.
33 @param Data Point to return Data-Buffer.
42 @retval EFI_INVALID_PARAMETER The DataSize is not too small and Data is NULL.
53 OUT VOID *Data
61 Data
73 @param DataSize The size in bytes of Data-Buffer.
74 @param Data Point to the content of the variable.
76 @retval EFI_SUCCESS The firmware has successfully stored the variable and its data as [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/data/ |
HDFDataFactory.java | 17 package com.google.clearsilver.jsilver.data; 27 * Loads data in Hierarchical Data Format (HDF) into Data objects. 47 public Data createData() { 52 public void loadData(final String dataFileName, ResourceLoader resourceLoader, Data output) 71 public Data loadData(String dataFileName, ResourceLoader resourceLoader) throws IOException { 72 Data result = createData();
|
TypeConverter.java | 17 package com.google.clearsilver.jsilver.data; 30 * Determines if the given data node exists in a ClearSilver compatible way. 32 public static boolean exists(Data data) { 33 return data != null && data.getValue() != null; 37 * Helper method to safely convert an arbitrary data instance (including null) into a valid 40 public static String asString(Data data) { 42 // (the data instance will return null to us [all...] |
/external/llvm/include/llvm/DebugInfo/CodeView/ |
CVTypeVisitor.h | 27 /// Visits the type records in Data. Sets the error flag on parse failures. 30 Error skipPadding(ArrayRef<uint8_t> &Data);
|
/external/llvm/include/llvm/DebugInfo/DWARF/ |
DWARFDebugFrame.h | 31 /// \brief Dump the section data into the given stream. 34 /// \brief Parse the section from raw data. 35 /// data is assumed to be pointing to the beginning of the section. 36 void parse(DataExtractor Data);
|
/external/llvm/include/llvm/Support/ |
JamCRC.h | 39 // \brief Update the CRC calculation with Data. 40 void update(ArrayRef<char> Data);
|
/external/pdfium/xfa/fde/css/ |
cfde_cssrulecollection.cpp | 30 const std::vector<std::unique_ptr<CFDE_CSSRuleCollection::Data>>* 51 pdfium::MakeUnique<Data>(pSelector, pDeclaration)); 56 CFDE_CSSRuleCollection::Data::Data(CFDE_CSSSelector* pSel,
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue100/ |
DataMore.java | 18 public class DataMore extends Data {
|
/external/swiftshader/third_party/LLVM/include/llvm/Object/ |
Archive.h | 28 StringRef Data; 31 Child(const Archive *p, StringRef d) : Parent(p), Data(d) {} 34 return (Parent == other.Parent) && (Data.begin() == other.Data.begin());
|
/external/testng/src/test/java/test/junit/testsetup/ |
LayerATestSuite.java | 14 TestSuiteContainerWrapper wrapper = new TestSuiteContainerWrapper(suite, Data.class);
|
/prebuilts/go/darwin-x86/src/cmd/vet/testdata/ |
unsafeptr.go | 33 x = unsafe.Pointer(s1.Data) 35 x = unsafe.Pointer(s2.Data) 37 x = unsafe.Pointer(s3.Data) // ERROR "possible misuse of unsafe.Pointer" 39 x = unsafe.Pointer(s4.Data) // ERROR "possible misuse of unsafe.Pointer" 46 x = unsafe.Pointer(ss1.Data) // ERROR "possible misuse of unsafe.Pointer" 48 x = unsafe.Pointer(ss2.Data) // ERROR "possible misuse of unsafe.Pointer" 58 Data uintptr 62 Data uintptr
|
/prebuilts/go/linux-x86/src/cmd/vet/testdata/ |
unsafeptr.go | 33 x = unsafe.Pointer(s1.Data) 35 x = unsafe.Pointer(s2.Data) 37 x = unsafe.Pointer(s3.Data) // ERROR "possible misuse of unsafe.Pointer" 39 x = unsafe.Pointer(s4.Data) // ERROR "possible misuse of unsafe.Pointer" 46 x = unsafe.Pointer(ss1.Data) // ERROR "possible misuse of unsafe.Pointer" 48 x = unsafe.Pointer(ss2.Data) // ERROR "possible misuse of unsafe.Pointer" 58 Data uintptr 62 Data uintptr
|
/device/linaro/bootloader/edk2/Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/ |
Nt32OemHookStatusCodeLib.c | 102 @param Data This optional parameter may be used to pass additional data
114 IN EFI_STATUS_CODE_DATA *Data OPTIONAL
128 if (Data != NULL &&
129 ReportStatusCodeExtractAssertInfo (CodeType, Value, Data, &Filename, &Description, &LineNumber)) {
155 } else if (Data != NULL &&
156 ReportStatusCodeExtractDebugInfo (Data, &ErrorLevel, &Marker, &Format)) {
192 if (Data != NULL) {
197 Data
|
/device/linaro/bootloader/edk2/Nt32Pkg/Library/PeiNt32OemHookStatusCodeLib/ |
Nt32OemHookStatusCodeLib.c | 111 @param Data This optional parameter may be used to pass additional data
123 IN EFI_STATUS_CODE_DATA *Data OPTIONAL
137 if (Data != NULL &&
138 ReportStatusCodeExtractAssertInfo (CodeType, Value, Data, &Filename, &Description, &LineNumber)) {
164 } else if (Data != NULL &&
165 ReportStatusCodeExtractDebugInfo (Data, &ErrorLevel, &Marker, &Format)) {
201 if (Data != NULL) {
206 Data
|
/external/clang/lib/Driver/ |
InputInfo.h | 40 } Data; 57 Data.Filename = _Filename; 61 Data.Filename = _Filename; 67 Data.InputArg = _InputArg; 72 Data.InputArg = _InputArg; 86 return Data.Filename; 90 return *Data.InputArg;
|