HomeSort by relevance Sort by last modified time
    Searched defs:Entry (Results 251 - 275 of 1665) sorted by null

<<11121314151617181920>>

  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/DebugInfo/CodeView/
DebugInlineeLinesSubsection.h 86 struct Entry {
107 std::vector<Entry>::const_iterator begin() const { return Entries.begin(); }
108 std::vector<Entry>::const_iterator end() const { return Entries.end(); }
114 std::vector<Entry> Entries;
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Transforms/Scalar/
ConstantHoisting.h 115 BlockFrequencyInfo *BFI, BasicBlock &Entry);
130 BasicBlock *Entry;
  /prebuilts/go/darwin-x86/src/cmd/internal/objfile/
objfile.go 29 entries []*Entry
32 type Entry struct {
78 return &File{r, []*Entry{&Entry{raw: raw}}}, nil
89 func (f *File) Entries() []*Entry {
121 func (e *Entry) Name() string {
125 func (e *Entry) Symbols() ([]Sym, error) {
140 func (e *Entry) PCLineTable() (Liner, error) {
154 func (e *Entry) Text() (uint64, []byte, error) {
158 func (e *Entry) GOARCH() string
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/pack/
pack_test.go 62 // Add an entry by hand.
126 expect := fmt.Sprintf("%s\n%s\n", helloFile.Entry(), goodbyeFile.Entry())
416 func (f *FakeFile) Entry() *Entry {
417 return &Entry{
  /prebuilts/go/linux-x86/src/cmd/internal/objfile/
objfile.go 29 entries []*Entry
32 type Entry struct {
78 return &File{r, []*Entry{&Entry{raw: raw}}}, nil
89 func (f *File) Entries() []*Entry {
121 func (e *Entry) Name() string {
125 func (e *Entry) Symbols() ([]Sym, error) {
140 func (e *Entry) PCLineTable() (Liner, error) {
154 func (e *Entry) Text() (uint64, []byte, error) {
158 func (e *Entry) GOARCH() string
    [all...]
  /prebuilts/go/linux-x86/src/cmd/pack/
pack_test.go 62 // Add an entry by hand.
126 expect := fmt.Sprintf("%s\n%s\n", helloFile.Entry(), goodbyeFile.Entry())
416 func (f *FakeFile) Entry() *Entry {
417 return &Entry{
  /system/media/audio_utils/include/audio_utils/
ErrorLog.h 35 * (within a specified time) into a single entry (to reduce log spamming).
37 * The entry thus contains the number of consecutive error codes,
50 * to be aggregated into a single entry.
83 // Add new error entry.
119 const auto &entry = local
121 if (entry.mCount == 0 || entry.mLastTime < limitNs) {
129 const auto &entry = local
132 ss << prefix << std::setw(5) << entry.mCode
133 << " " << std::setw(5) << entry.mCoun
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
CatchHandlerList.java 48 public Entry get(int n) {
49 return (Entry) get0(n);
75 Entry entry = get(i); local
86 sb.append(entry.getExceptionType().toHuman());
90 sb.append(Hex.u2or4(entry.getHandler()));
110 Entry last = get(size - 1);
115 * Sets the entry at the given index.
122 set0(n, new Entry(exceptionType, handler));
126 * Sets the entry at the given index
    [all...]
PositionList.java 76 PositionList.Entry[] arr = new PositionList.Entry[sz];
99 arr[at] = new PositionList.Entry(insn.getAddress(), pos);
131 public Entry get(int n) {
132 return (Entry) get0(n);
136 * Sets the entry at the given index.
139 * @param entry {@code non-null;} the entry to set at {@code n}
141 public void set(int n, Entry entry) {
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
CatchHandlerList.java 48 public Entry get(int n) {
49 return (Entry) get0(n);
76 Entry entry = get(i); local
87 sb.append(entry.getExceptionType().toHuman());
91 sb.append(Hex.u2or4(entry.getHandler()));
111 Entry last = get(size - 1);
116 * Sets the entry at the given index.
123 set0(n, new Entry(exceptionType, handler));
127 * Sets the entry at the given index
    [all...]
PositionList.java 76 PositionList.Entry[] arr = new PositionList.Entry[sz];
99 arr[at] = new PositionList.Entry(insn.getAddress(), pos);
131 public Entry get(int n) {
132 return (Entry) get0(n);
136 * Sets the entry at the given index.
139 * @param entry {@code non-null;} the entry to set at {@code n}
141 public void set(int n, Entry entry) {
    [all...]
  /development/samples/training/network-usage/src/com/example/android/networkusage/
StackOverflowXmlParser.java 30 * where each list element represents a single entry (post) in the XML feed.
37 public List<Entry> parse(InputStream in) throws XmlPullParserException, IOException {
49 private List<Entry> readFeed(XmlPullParser parser) throws XmlPullParserException, IOException {
50 List<Entry> entries = new ArrayList<Entry>();
58 // Starts by looking for the entry tag
59 if (name.equals("entry")) {
68 // This class represents a single entry (post) in the XML feed.
70 public static class Entry {
75 private Entry(String title, String summary, String link)
    [all...]
  /device/linaro/bootloader/edk2/ArmPkg/Drivers/CpuDxe/AArch64/
Mmu.c 32 // Get the first entry of the table
61 UINT64 Entry;
79 Entry = TableAddress[Index];
80 EntryType = Entry & TT_TYPE_MASK;
81 EntryAttribute = Entry & TT_ATTR_INDX_MASK;
83 // If Entry is a Table Descriptor type entry then go through the sub-level table
102 // Table Entry type is only valid for Level 0, 1, 2
106 GetNextEntryAttribute ((UINT64*)(Entry & TT_ADDRESS_MASK_DESCRIPTION_TABLE),
263 // Find the block entry linked to the Base Address
    [all...]
  /device/linaro/bootloader/edk2/ArmPlatformPkg/FileSystem/BootMonFs/
BootMonFsEntryPoint.c 88 LIST_ENTRY *Entry;
94 for (Entry = GetFirstNode (&Instance->RootFile->Link);
95 !IsNull (&Instance->RootFile->Link, Entry);
96 Entry = GetNextNode (&Instance->RootFile->Link, Entry)
99 FileEntry = BOOTMON_FS_FILE_FROM_LINK_THIS (Entry);
123 LIST_ENTRY *Entry;
127 for (Entry = GetFirstNode (&Instance->RootFile->Link);
128 !IsNull (&Instance->RootFile->Link, Entry) && (&Instance->RootFile->Link != Entry);
    [all...]
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Library/EblCmdLib/Arm/
EblCmdMmu.c 82 MMU_ENTRY Entry;
83 Entry.Level = Level;
84 Entry.Value = Table[Index];
85 Entry.Table = Table;
86 Entry.Index = Index;
87 return Entry;
93 IN UINT32 Entry
99 if ((Entry & 0x3) == 0) { // Ignored
101 } else if ((Entry & 0x3) == 2) { // Section Type
107 if ((Entry & 0x3) == 0) { // Ignored
    [all...]
  /device/linaro/bootloader/edk2/DuetPkg/DxeIpl/
LegacyTable.c 112 UINT32 Entry;
117 UINT64 Entry;
138 EntryPtr = &Rsdt->Entry;
167 BasePtr = (UINTN)(&(Xsdt->Entry));
  /device/linaro/bootloader/edk2/EmbeddedPkg/Drivers/AndroidFastbootTransportUsbDxe/
FastbootTransportUsb.c 233 FASTBOOT_USB_PACKET_LIST *Entry;
239 Entry = (FASTBOOT_USB_PACKET_LIST *) GetFirstNode (&mPacketList);
241 *BufferSize = Entry->BufferSize;
242 *Buffer = Entry->Buffer;
244 RemoveEntryList (&Entry->Link);
245 FreePool (Entry);
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/I2c/I2cDxe/
I2cHost.c 619 LIST_ENTRY *Entry;
658 Entry = GetFirstNode (EntryHeader);
659 I2cRequest = I2C_REQUEST_FROM_ENTRY (Entry);
701 LIST_ENTRY *Entry;
707 Entry = GetFirstNode (EntryHeader);
708 I2cRequest = I2C_REQUEST_FROM_ENTRY (Entry);
802 LIST_ENTRY *Entry;
815 Entry = GetFirstNode (EntryHeader);
816 I2cRequest = I2C_REQUEST_FROM_ENTRY (Entry);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/EhciDxe/
EhciUrb.c 304 LIST_ENTRY *Entry;
308 EFI_LIST_FOR_EACH_SAFE (Entry, Next, Qtds) {
309 Qtd = EFI_LIST_CONTAINER (Entry, EHC_QTD, QtdList);
376 LIST_ENTRY *Entry;
491 EFI_LIST_FOR_EACH (Entry, &Qh->Qtds) {
492 Qtd = EFI_LIST_CONTAINER (Entry, EHC_QTD, QtdList);
495 // break if it is the last entry on the list
497 if (Entry->ForwardLink == &Qh->Qtds) {
501 NextQtd = EFI_LIST_CONTAINER (Entry->ForwardLink, EHC_QTD, QtdList);
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/EhciPei/
EhciUrb.c 296 EFI_LIST_ENTRY *Entry;
300 EFI_LIST_FOR_EACH_SAFE (Entry, Next, Qtds) {
301 Qtd = EFI_LIST_CONTAINER (Entry, PEI_EHC_QTD, QtdList);
352 EFI_LIST_ENTRY *Entry;
463 EFI_LIST_FOR_EACH (Entry, &Qh->Qtds) {
464 Qtd = EFI_LIST_CONTAINER (Entry, PEI_EHC_QTD, QtdList);
467 // break if it is the last entry on the list
469 if (Entry->ForwardLink == &Qh->Qtds) {
473 NextQtd = EFI_LIST_CONTAINER (Entry->ForwardLink, PEI_EHC_QTD, QtdList);
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Ufs/UfsPassThruDxe/
UfsPassThru.c     [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeSmmPerformanceLib/
DxeSmmPerformanceLib.c 273 Attempts to retrieve a performance measurement log entry from the performance measurement log.
277 Attempts to retrieve the performance log entry specified by LogEntryKey. If LogEntryKey is
278 zero on entry, then an attempt is made to retrieve the first entry from the performance log,
279 and the key for the second entry in the log is returned. If the performance log is empty,
280 then no entry is retrieved and zero is returned. If LogEntryKey is not zero, then the performance
281 log entry associated with LogEntryKey is retrieved, and the key for the next entry in the log is
282 returned. If LogEntryKey is the key for the last entry in the log, then the last log entry is
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeUdpIoLib/
DxeUdpIoLib.c 770 LIST_ENTRY *Entry;
777 NET_LIST_FOR_EACH_SAFE (Entry, Next, &UdpIo->SentDatagram) {
778 TxToken = NET_LIST_USER_STRUCT (Entry, UDP_TX_TOKEN, Link);
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/VarCheckLib/
VarCheckLib.c 181 VAR_CHECK_VARIABLE_ENTRY *Entry;
185 Entry = (VAR_CHECK_VARIABLE_ENTRY *) mVarCheckVariableTable[Index];
186 VariableName = (CHAR16 *) ((UINTN) Entry + sizeof (*Entry));
187 if (CompareGuid (&Entry->Guid, Guid) && (StrCmp (VariableName, Name) == 0)) {
188 return &Entry->VariableProperty;
196 Var check add table entry.
199 @param[in, out] MaxNumber Pointer to maximum number of entry in the table.
200 @param[in, out] CurrentNumber Pointer to current number of entry in the table.
201 @param[in] Entry Entry will be added to the table.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Disk/PartitionDxe/
Gpt.c 14 partition content and validate the GPT table and GPT entry.
56 for Partition entry array.
95 This routine will check GPT partition entry and return entry status.
98 The GPT partition entry is external input, so this routine
99 will do basic validation for GPT partition entry and report status.
102 @param[in] PartEntry The partition entry array
103 @param[out] PEntryStatus the partition entry status array
215 EFI_PARTITION_ENTRY *Entry;
341 DEBUG ((EFI_D_ERROR, " Partition Entry ReadDisk error\n"));
    [all...]

Completed in 863 milliseconds

<<11121314151617181920>>