Lines Matching defs:Position

30   LIST_ENTRY      *Position;
37 IN OUT LOCATE_POSITION *Position,
44 @param Position Information about which Handle to seach for.
48 @return An pointer to IHANDLE if the next Position is not the end of the list.
54 IN OUT LOCATE_POSITION *Position,
62 @param Position Information about which Handle to seach for.
66 @return An pointer to IHANDLE if the next Position is not the end of the list.
72 IN OUT LOCATE_POSITION *Position,
79 @param Position Information about which Handle to seach for.
83 @return An pointer to IHANDLE if the next Position is not the end of the list.
89 IN OUT LOCATE_POSITION *Position,
123 LOCATE_POSITION Position;
144 Position.Protocol = Protocol;
145 Position.SearchKey = SearchKey;
146 Position.Position = &gHandleList;
185 Position.ProtEntry = CoreFindProtocolEntry (Protocol, FALSE);
186 if (Position.ProtEntry == NULL) {
190 Position.Position = &Position.ProtEntry->Protocols;
212 Handle = GetNext (&Position, &Interface);
252 ProtNotify->Position = ProtNotify->Position->ForwardLink;
265 @param Position Information about which Handle to seach for.
269 @return An pointer to IHANDLE if the next Position is not the end of the list.
275 IN OUT LOCATE_POSITION *Position,
284 Position->Position = Position->Position->ForwardLink;
291 if (Position->Position != &gHandleList) {
292 Handle = CR (Position->Position, IHANDLE, AllHandles, EFI_HANDLE_SIGNATURE);
304 @param Position Information about which Handle to seach for.
308 @return An pointer to IHANDLE if the next Position is not the end of the list.
314 IN OUT LOCATE_POSITION *Position,
325 ProtNotify = Position->SearchKey;
332 Position->SearchKey = NULL;
337 Link = ProtNotify->Position->ForwardLink;
352 @param Position Information about which Handle to seach for.
356 @return An pointer to IHANDLE if the next Position is not the end of the list.
362 IN OUT LOCATE_POSITION *Position,
376 Link = Position->Position->ForwardLink;
377 Position->Position = Link;
382 if (Link == &Position->ProtEntry->Protocols) {
558 LOCATE_POSITION Position;
576 Position.Protocol = Protocol;
577 Position.SearchKey = Registration;
578 Position.Position = &gHandleList;
591 Position.ProtEntry = CoreFindProtocolEntry (Protocol, FALSE);
592 if (Position.ProtEntry == NULL) {
596 Position.Position = &Position.ProtEntry->Protocols;
598 Handle = CoreGetNextLocateByProtocol (&Position, Interface);
600 Handle = CoreGetNextLocateByRegisterNotify (&Position, Interface);
611 ProtNotify->Position = ProtNotify->Position->ForwardLink;