HomeSort by relevance Sort by last modified time
    Searched defs:Record (Results 1 - 25 of 329) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/StatusCode/RuntimeDxe/
RtMemoryStatusCodeWorker.c 50 first record and overwrite it.
69 MEMORY_STATUSCODE_RECORD *Record;
72 // Locate current record buffer.
74 Record = (MEMORY_STATUSCODE_RECORD *) (mRtMemoryStatusCodeTable + 1);
75 Record = &Record[mRtMemoryStatusCodeTable->RecordIndex++];
80 Record->CodeType = CodeType;
81 Record->Value = Value;
82 Record->Instance = Instance;
85 // If record index equals to max record number, then wrap around record index to zero.
    [all...]
StatusCodeRuntimeDxe.c 207 MEMORY_STATUSCODE_RECORD *Record;
243 // Journal GUID'ed HOBs to find all record entry, if found,
244 // then output record to support replay device.
249 Record = (MEMORY_STATUSCODE_RECORD *) (PacketHeader + 1);
253 // Record has been wrapped around. So, record number has arrived at max number.
263 Record[Index].CodeType,
264 Record[Index].Value,
265 Record[Index].Instance,
272 Record[Index].CodeType,
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/StatusCodeHandler/RuntimeDxe/
MemoryStatusCodeWorker.c 50 first record and overwrite it.
76 MEMORY_STATUSCODE_RECORD *Record;
79 // Locate current record buffer.
81 Record = (MEMORY_STATUSCODE_RECORD *) (mRtMemoryStatusCodeTable + 1);
82 Record = &Record[mRtMemoryStatusCodeTable->RecordIndex++];
87 Record->CodeType = CodeType;
88 Record->Value = Value;
89 Record->Instance = Instance;
92 // If record index equals to max record number, then wrap around record index to zero.
    [all...]
StatusCodeHandlerRuntimeDxe.c 81 MEMORY_STATUSCODE_RECORD *Record;
106 // Journal GUID'ed HOBs to find all record entry, if found,
107 // then output record to support replay device.
112 Record = (MEMORY_STATUSCODE_RECORD *) (PacketHeader + 1);
116 // Record has been wrapped around. So, record number has arrived at max number.
126 Record[Index].CodeType,
127 Record[Index].Value,
128 Record[Index].Instance,
135 Record[Index].CodeType,
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/StatusCodeHandler/Smm/
MemoryStatusCodeWorker.c 43 first record and overwrite it.
69 MEMORY_STATUSCODE_RECORD *Record;
72 // Locate current record buffer.
74 Record = (MEMORY_STATUSCODE_RECORD *) (mSmmMemoryStatusCodeTable + 1);
75 Record = &Record[mSmmMemoryStatusCodeTable->RecordIndex++];
80 Record->CodeType = CodeType;
81 Record->Value = Value;
82 Record->Instance = Instance;
85 // If record index equals to max record number, then wrap around record index to zero.
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/StatusCode/Pei/
MemoryStausCodeWorker.c 81 MEMORY_STATUSCODE_RECORD *Record;
84 // Find GUID'ed HOBs to locate current record buffer.
90 Record = (MEMORY_STATUSCODE_RECORD *) (PacketHeader + 1);
91 Record = &Record[PacketHeader->RecordIndex++];
96 Record->CodeType = CodeType;
97 Record->Instance = Instance;
98 Record->Value = Value;
101 // If record index equals to max record number, then wrap around record index to zero.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/StatusCodeHandler/Pei/
MemoryStausCodeWorker.c 90 MEMORY_STATUSCODE_RECORD *Record;
93 // Find GUID'ed HOBs to locate current record buffer.
99 Record = (MEMORY_STATUSCODE_RECORD *) (PacketHeader + 1);
100 Record = &Record[PacketHeader->RecordIndex++];
105 Record->CodeType = CodeType;
106 Record->Instance = Instance;
107 Record->Value = Value;
110 // If record index equals to max record number, then wrap around record index to zero.
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/PiSmbiosRecordOnDataHubSmbiosRecordThunk/
Thunk.c 98 EFI_DATA_RECORD_HEADER *Record;
134 Record = NULL;
142 &Record
146 if (Record->DataRecordClass == EFI_DATA_RECORD_CLASS_DATA) {
151 SmbiosProcessDataRecord (Record);
  /external/toolchain-utils/cros_utils/
timeline.py 26 def Record(self, event):
  /prebuilts/go/darwin-x86/src/cmd/trace/
pprof.go 28 // Record represents one entry in pprof-like profiles.
29 type Record struct {
41 prof := make(map[uint64]Record)
61 prof := make(map[uint64]Record)
87 prof := make(map[uint64]Record)
108 prof := make(map[uint64]Record)
159 func buildProfile(prof map[uint64]Record) *profile.Profile {
  /prebuilts/go/linux-x86/src/cmd/trace/
pprof.go 28 // Record represents one entry in pprof-like profiles.
29 type Record struct {
41 prof := make(map[uint64]Record)
61 prof := make(map[uint64]Record)
87 prof := make(map[uint64]Record)
108 prof := make(map[uint64]Record)
159 func buildProfile(prof map[uint64]Record) *profile.Profile {
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/DataHubStdErrDxe/
DataHubStdErr.c 48 EFI_DATA_RECORD_HEADER *Record;
70 // Mtc of zero means return the next record that has not been read by the
75 Status = DataHub->GetNextRecord (DataHub, &Mtc, &mDataHubStdErrEvent, &Record);
77 if (CompareGuid (&Record->DataRecordGuid, &gEfiDataHubStatusCodeRecordGuid)) {
78 DataRecord = (DATA_HUB_STATUS_CODE_DATA_RECORD *) (((CHAR8 *) Record) + Record->HeaderSize);
83 // If the Data record is from a DEBUG () then send it to Standard Error
  /external/llvm/lib/DebugInfo/PDB/DIA/
DIADataStream.cpp 40 RecordType Record;
46 Record.resize(RecordSize);
47 if (S_OK != StreamData->Item(Index, RecordSize, &RecordSize, &Record[0]))
49 return Record;
52 bool DIADataStream::getNext(RecordType &Record) {
53 Record.clear();
60 Record.resize(RecordSize);
62 StreamData->Next(1, RecordSize, &RecordSize, &Record[0], &CountFetched))
  /external/llvm/unittests/Bitcode/
BitstreamReaderTest.cpp 204 unsigned Record[] = {RecordID};
205 Stream.EmitRecordWithBlob(AbbrevID, makeArrayRef(Record), BlobIn);
229 ASSERT_EQ(BitstreamEntry::Record, Entry.Kind);
232 // Record.
234 SmallVector<uint64_t, 1> Record;
235 ASSERT_EQ(RecordID, Stream.readRecord(Entry.ID, Record, &BlobOut));
236 EXPECT_TRUE(Record.empty());
  /external/pdfium/xfa/fxfa/parser/
cscript_datawindow.cpp 25 void CScript_DataWindow::Record(CFXJSE_Arguments* pArguments) {}
  /prebuilts/go/darwin-x86/doc/progs/
error2.go 20 key := datastore.NewKey(c, "Record", r.FormValue("id"), 0, nil)
21 record := new(Record)
22 if err := datastore.Get(c, key, record); err != nil {
26 if err := viewTemplate.Execute(w, record); err != nil {
46 func (ds) Get(*ctx, string, *Record) error { return nil }
50 type Record struct{}
error3.go 22 key := datastore.NewKey(c, "Record", r.FormValue("id"), 0, nil)
23 record := new(Record)
24 if err := datastore.Get(c, key, record); err != nil {
27 return viewTemplate.Execute(w, record)
55 func (ds) Get(*ctx, string, *Record) error { return nil }
59 type Record struct{}
error4.go 36 key := datastore.NewKey(c, "Record", r.FormValue("id"), 0, nil)
37 record := new(Record)
38 if err := datastore.Get(c, key, record); err != nil {
39 return &appError{err, "Record not found", 404}
41 if err := viewTemplate.Execute(w, record); err != nil {
42 return &appError{err, "Can't display record", 500}
66 func (ds) Get(*ctx, string, *Record) error { return nil }
70 type Record struct{}
  /prebuilts/go/linux-x86/doc/progs/
error2.go 20 key := datastore.NewKey(c, "Record", r.FormValue("id"), 0, nil)
21 record := new(Record)
22 if err := datastore.Get(c, key, record); err != nil {
26 if err := viewTemplate.Execute(w, record); err != nil {
46 func (ds) Get(*ctx, string, *Record) error { return nil }
50 type Record struct{}
error3.go 22 key := datastore.NewKey(c, "Record", r.FormValue("id"), 0, nil)
23 record := new(Record)
24 if err := datastore.Get(c, key, record); err != nil {
27 return viewTemplate.Execute(w, record)
55 func (ds) Get(*ctx, string, *Record) error { return nil }
59 type Record struct{}
  /device/linaro/bootloader/edk2/EmulatorPkg/Library/SmbiosLib/
SmbiosLib.c 65 Create SMBIOS record.
68 an SMBIOS record where the strings are cat'ed on the end of the fixed record
100 EFI_SMBIOS_TABLE_HEADER *Record;
106 // Calculate the size of the fixed record and optional string pack
122 Record = (EFI_SMBIOS_TABLE_HEADER *)AllocateZeroPool (Size);
123 if (Record == NULL) {
126 CopyMem (Record, SmbiosEntry, SmbiosEntry->Length);
130 Str = ((CHAR8 *)Record) + Record->Length
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/SmBiosMiscDxe/
MiscProcessorCacheFunction.c 75 EFI_DATA_RECORD_HEADER *Record;
112 Record = NULL;
119 &Record
122 if (Record->DataRecordClass == EFI_DATA_RECORD_CLASS_DATA) {
123 DataHeader = (EFI_SUBCLASS_TYPE1_HEADER *)(Record + 1);
125 SrcDataSize = Record->RecordSize - Record->HeaderSize - sizeof (EFI_SUBCLASS_TYPE1_HEADER);
126 if (CompareGuid(&Record->DataRecordGuid, &gEfiCacheSubClassGuid) && (DataHeader->RecordType == CacheSizeRecordType)) {
  /external/clang/lib/Frontend/
SerializedDiagnosticReader.cpp 70 Record = 1,
101 // We found a record.
103 return Cursor::Record;
124 case Cursor::Record:
135 SmallVector<uint64_t, 1> Record;
136 unsigned RecordID = Stream.readRecord(BlockOrCode, Record);
139 if (Record.size() < 1)
141 if (Record[0] > VersionNumber)
157 SmallVector<uint64_t, 16> Record;
177 case Cursor::Record
    [all...]
TestModuleFileExtension.cpp 26 // Write an abbreviation for this record.
41 uint64_t Record[] = {FIRST_EXTENSION_RECORD_ID, Message.size()};
42 Stream.EmitRecordWithBlob(Abbrev, Record, Message);
50 SmallVector<uint64_t, 4> Record;
59 case llvm::BitstreamEntry::Record:
63 Record.clear();
65 unsigned RecCode = Stream.readRecord(Entry.ID, Record, &Blob);
68 StringRef Message = Blob.substr(0, Record[0]);
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
LanguageData.java 23 public static class Record
28 public Record(String tag, String name)
59 private Record[] languages =
61 new Record("", "null"),
62 new Record("ARA", "Arabic"),
63 new Record("ASM", "Assamese"),
64 new Record("BEN", "Bengali"),
65 new Record("FAR", "Farsi"),
66 new Record("GUJ", "Gujarati"),
67 new Record("HIN", "Hindi")
    [all...]

Completed in 769 milliseconds

1 2 3 4 5 6 7 8 91011>>