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

<<11121314151617181920>>

  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6Impl.c 514 LIST_ENTRY *Entry;
531 NET_LIST_FOR_EACH (Entry, &IpSb->Interfaces) {
533 IpIf = NET_LIST_USER_STRUCT (Entry, IP6_INTERFACE, Link);
805 route entry.
824 @retval EFI_OUT_OF_RESOURCES Could not add the entry to the routing table.
898 The Neighbors() function is used to add, update, or delete an entry from neighbor cache.
909 @param[in] DeleteFlag Set to TRUE to delete the specified cache entry, set to FALSE to
911 specified cache entry. TargetIp6Address is used as the key
912 to find the requested cache entry.
915 @param[in] Timeout Time in 100-ns units that this entry will remain in the neighbor
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/IpSecDxe/Ikev2/
Sa.c 254 LIST_ENTRY *Entry;
267 NET_LIST_FOR_EACH (Entry, &(IkePacket)->PayloadList) {
268 IkePayload = IKE_PAYLOAD_BY_PACKET (Entry);
686 LIST_ENTRY *Entry;
702 NET_LIST_FOR_EACH (Entry, &(IkePacket)->PayloadList) {
703 IkePayload = IKE_PAYLOAD_BY_PACKET (Entry);
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Mtftp6Dxe/
Mtftp6Support.c 179 LIST_ENTRY *Entry;
181 NET_LIST_FOR_EACH (Entry, Head) {
187 Range = NET_LIST_USER_STRUCT (Entry, MTFTP6_BLOCK_RANGE, Link);
924 LIST_ENTRY *Entry;
965 NET_LIST_FOR_EACH_SAFE (Entry, Next, &Instance->BlkList) {
966 Block = NET_LIST_USER_STRUCT (Entry, MTFTP6_BLOCK_RANGE, Link);
967 RemoveEntryList (Entry);
1181 LIST_ENTRY *Entry;
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/
SockImpl.c 49 the tail or head entry.
595 LIST_ENTRY *Entry;
599 Entry = NULL;
609 Entry = SpecifiedTokenList->ForwardLink;
610 while (Entry != SpecifiedTokenList) {
611 SockToken = NET_LIST_USER_STRUCT (Entry, SOCK_TOKEN, TokenList);
618 Entry = SpecifiedTokenList->ForwardLink;
631 Entry = Entry->ForwardLink;
TcpMisc.c 249 LIST_ENTRY *Entry;
258 NET_LIST_FOR_EACH (Entry, &mTcpListenQue) {
259 Node = NET_LIST_USER_STRUCT (Entry, TCP_CB, List);
320 LIST_ENTRY *Entry;
327 NET_LIST_FOR_EACH (Entry, &mTcpListenQue) {
328 Tcb = NET_LIST_USER_STRUCT (Entry, TCP_CB, List);
339 NET_LIST_FOR_EACH (Entry, &mTcpRunQue) {
340 Tcb = NET_LIST_USER_STRUCT (Entry, TCP_CB, List);
380 LIST_ENTRY *Entry;
392 NET_LIST_FOR_EACH (Entry, &mTcpRunQue) {
    [all...]
TcpOutput.c 151 LIST_ENTRY *Entry;
158 Entry = Tcb->SndQue.BackLink;
159 Nbuf = NET_LIST_USER_STRUCT (Entry, NET_BUF, List);
725 LIST_ENTRY *Entry;
735 Entry = Head->ForwardLink;
736 Nbuf = NET_LIST_USER_STRUCT (Entry, NET_BUF, List);
739 NET_LIST_FOR_EACH (Entry, Head) {
740 Nbuf = NET_LIST_USER_STRUCT (Entry, NET_BUF, List);
  /device/linaro/bootloader/edk2/NetworkPkg/UefiPxeBcDxe/
PxeBcBoot.c 473 PXEBC_BOOT_SVR_ENTRY *Entry;
501 Entry = VendorOpt->BootSvr;
502 if (VendorOpt->BootSvrLen >= sizeof (PXEBC_BOOT_SVR_ENTRY) && Entry->IpCnt > 0) {
505 &Entry->IpAddr[0],
697 Extract the discover information and boot server entry from the
722 PXEBC_BOOT_SVR_ENTRY *Entry;
744 Entry = NULL;
757 // Parse the boot server entry from the vendor option in the last cached packet.
774 Entry = VendorOpt->BootSvr;
776 while (((UINT8) (Entry - VendorOpt->BootSvr)) < VendorOpt->BootSvrLen) {
    [all...]
  /device/linaro/bootloader/edk2/Nt32Pkg/SnpNt32Dxe/
SnpNt32.h 194 // List entry use for linking with other instance
196 LIST_ENTRY Entry;
  /device/linaro/bootloader/edk2/OvmfPkg/Include/IndustryStandard/
VirtioGpu.h 164 VIRTIO_GPU_MEM_ENTRY Entry;
  /device/linaro/bootloader/edk2/SecurityPkg/Library/OpalPasswordSupportLib/
OpalPasswordSupportLib.c 607 LIST_ENTRY *Entry;
612 for (Entry = mDeviceList.ForwardLink; Entry != &mDeviceList; Entry = Entry->ForwardLink) {
613 List = BASE_CR (Entry, OPAL_DISK_AND_PASSWORD_INFO, Link);
635 Communication service SMI Handler entry.
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
HashList.cs 60 Entry
118 public DictionaryEntry Entry
385 return new HashListEnumerator(this, HashListEnumerator.EnumerationMode.Entry);
477 return new HashListEnumerator(this, HashListEnumerator.EnumerationMode.Entry);
  /external/clang/lib/CodeGen/
CodeGenTypes.cpp 663 llvm::StructType *&Entry = RecordDeclTypes[Key];
666 if (!Entry) {
667 Entry = llvm::StructType::create(getLLVMContext());
668 addRecordTypeName(RD, Entry, "");
670 llvm::StructType *Ty = Entry;
  /external/clang/lib/Rewrite/
Rewriter.cpp 449 const FileEntry *Entry =
451 AtomicallyMovedFile File(getSourceMgr().getDiagnostics(), Entry->getName(),
  /external/clang/lib/Serialization/
ModuleManager.cpp 32 const FileEntry *Entry = FileMgr.getFile(Name, /*openFile=*/false,
34 if (Entry)
35 return lookup(Entry);
51 const FileEntry *Entry = FileMgr.getFile(Name, /*openFile=*/false,
53 return std::move(InMemoryBuffers[Entry]);
67 // Look for the file entry. This only fails if the expected size or
69 const FileEntry *Entry;
77 if (lookupModuleFile(FileName, ExpectedSize, ExpectedModTime, Entry)) {
82 if (!Entry && FileName != "-") {
88 ModuleFile *&ModuleEntry = Modules[Entry];
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CoreEngine.cpp 171 const CFGBlock *Entry = &(L->getCFG()->getEntry());
173 assert (Entry->empty() &&
174 "Entry block must be empty.");
176 assert (Entry->succ_size() == 1 &&
177 "Entry block must have 1 successor.");
179 // Mark the entry block as visited.
180 FunctionSummaries->markVisitedBasicBlock(Entry->getBlockID(),
185 const CFGBlock *Succ = *(Entry->succ_begin());
189 BlockEdge StartLoc(Entry, Succ, L);
  /external/clang/lib/Tooling/Core/
Replacement.cpp 58 const FileEntry *Entry = SM.getFileManager().getFile(FilePath);
59 if (!Entry)
62 FileID ID = SM.getOrCreateFileID(Entry, SrcMgr::C_User);
110 const FileEntry *Entry = Sources.getFileEntryForID(DecomposedLocation.first);
111 this->FilePath = Entry ? Entry->getName() : InvalidLocation;
  /external/deqp/framework/delibs/decpp/
deCommandLine.hpp 189 struct Entry
194 Entry (void) : value(DE_NULL), destructor(0) {}
195 Entry (void* value_, DestroyFunc destructor_) : value(value_), destructor(destructor_) {}
198 typedef std::map<const std::type_info*, Entry> Map;
201 const Entry& get (const std::type_info* key) const;
202 void set (const std::type_info* key, const Entry& value);
210 set(&typeid(Name), Entry(value, &TypedFieldValueTraits<typename TypedFieldTraits<Name>::ValueType>::destroy));
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
Counter.java 101 private static class Entry<T> {
105 public Entry(RWLong count, T value, int uniqueness) {
112 private static class EntryComparator<T> implements Comparator<Entry<T>>{
120 public int compare(Entry<T> o1, Entry<T> o2) {
135 Set<Entry<T>> count_key = new TreeSet<Entry<T>>(new EntryComparator<T>(ascending, byValue));
138 count_key.add(new Entry<T>(map.get(key), key, counter++));
141 for (Entry<T> entry : count_key)
    [all...]
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
Counter.java 98 private static class Entry<T> {
102 public Entry(RWLong count, T value, int uniqueness) {
109 private static class EntryComparator<T> implements Comparator<Entry<T>>{
117 public int compare(Entry<T> o1, Entry<T> o2) {
132 Set<Entry<T>> count_key = new TreeSet<Entry<T>>(new EntryComparator<T>(ascending, byValue));
135 count_key.add(new Entry<T>(map.get(key), key, counter++));
138 for (Entry<T> entry : count_key)
    [all...]
  /external/llvm/include/llvm/ObjectYAML/
ELFYAML.h 67 llvm::yaml::Hex64 Entry;
  /external/llvm/lib/Analysis/
AliasSetTracker.cpp 96 void AliasSet::addPointer(AliasSetTracker &AST, PointerRec &Entry,
99 assert(!Entry.hasAliasSet() && "Entry already in set!");
107 MemoryLocation(Entry.getValue(), Size, AAInfo));
110 else // First entry of must alias must have maximum size!
115 Entry.setAliasSet(this);
116 Entry.updateSizeAndAAInfo(Size, AAInfo);
120 *PtrListEnd = &Entry;
121 PtrListEnd = Entry.setPrevInList(PtrListEnd);
123 addRef(); // Entry points to alias set
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DebugLocStream.h 28 /// variable/inlined-at pair, and an \a Entry for each \a DebugLocEntry.
41 struct Entry {
46 Entry(const MCSymbol *BeginSym, const MCSymbol *EndSym, size_t ByteOffset,
54 SmallVector<Entry, 32> Entries;
72 /// \brief Start a new .debug_loc entry list.
74 /// Start a new .debug_loc entry list. Return the new list's index so it can
84 /// Finalize a .debug_loc entry list.
92 /// \brief Start a new .debug_loc entry.
95 /// entry.
100 /// Finalize a .debug_loc entry, deleting if it's empty
    [all...]
  /external/llvm/lib/CodeGen/
ExecutionDepsFix.cpp 218 const auto &Entry = AliasMap[Reg];
219 return make_range(Entry.begin(), Entry.end());
381 // This is the entry block.
391 DEBUG(dbgs() << "BB#" << MBB->getNumber() << ": entry\n");
763 MachineBasicBlock *Entry = &*MF->begin();
764 ReversePostOrderTraversal<MachineBasicBlock*> RPOT(Entry);
InterferenceCache.h 38 /// Entry - A cache entry containing interference information for all aliases
40 class Entry {
48 /// RefCount - The total number of Cursor instances referring to this Entry.
97 Entry() : PhysReg(0), Tag(0), RefCount(0), Indexes(nullptr), LIS(nullptr) {}
100 assert(!hasRefs() && "Cannot clear cache entry with references");
115 /// valid - Return true if this is a valid entry for physReg.
118 /// reset - Initialize entry to represent physReg's aliases.
132 // We don't keep a cache entry for every physical register, that would use too
137 // Point to an entry for each physreg. The entry pointed to may not be up t
    [all...]
LocalStackSlotAllocation.cpp 324 MachineBasicBlock *Entry = &Fn.front();
397 // MachineBasicBlock::iterator InsertionPt = Entry->begin();
398 TRI->materializeFrameBaseRegister(Entry, BaseReg, FrameIdx,

Completed in 664 milliseconds

<<11121314151617181920>>