/device/linaro/bootloader/edk2/StdLib/LibC/Uefi/InteractiveIO/ |
D | IIOutilities.c | 44 void *Proto; in IIO_GetDeviceProto() local 48 Proto = NULL; in IIO_GetDeviceProto() 52 Proto = (void *)Stream->Dev; in IIO_GetDeviceProto() 57 return Proto; in IIO_GetDeviceProto() 130 EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *Proto; in IIO_GetCursorPosition() local 136 Proto = (EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *)IIO_GetDeviceProto(fd, &pStdOut); in IIO_GetCursorPosition() 137 if(Proto != NULL) { in IIO_GetCursorPosition() 142 *Column = Proto->Mode->CursorColumn; in IIO_GetCursorPosition() 143 *Row = Proto->Mode->CursorRow; in IIO_GetCursorPosition() 144 if(Proto->Mode->CursorVisible) { in IIO_GetCursorPosition() [all …]
|
/device/linaro/bootloader/edk2/StdLib/LibC/Uefi/Devices/Console/ |
D | daConsole.c | 130 EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *Proto; in da_ConSeek() local 145 Proto = (EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *)Stream->Dev; in da_ConSeek() 148 EFIerrno = Proto->SetCursorPosition(Proto, in da_ConSeek() 182 EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *Proto; in da_ConWrite() local 200 Proto = (EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *)Stream->Dev; in da_ConWrite() 206 Status = Proto->SetCursorPosition(Proto, in da_ConWrite() 213 Status = Proto->OutputString( Proto, (CHAR16 *)Buffer); in da_ConWrite() 245 EFI_SIMPLE_TEXT_INPUT_PROTOCOL *Proto; in da_ConRawRead() local 254 Proto = (EFI_SIMPLE_TEXT_INPUT_PROTOCOL *)Stream->Dev; in da_ConRawRead() 257 Status = Proto->ReadKeyStroke(Proto, &Key); in da_ConRawRead() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
D | lfunc.h | 21 LUAI_FUNC Proto *luaF_newproto (lua_State *L); 27 LUAI_FUNC void luaF_freeproto (lua_State *L, Proto *f); 29 LUAI_FUNC const char *luaF_getlocalname (const Proto *func, int local_number,
|
D | ldump.c | 78 static void DumpFunction(const Proto* f, DumpState* D); 80 static void DumpConstants(const Proto* f, DumpState* D) in DumpConstants() 109 static void DumpUpvalues(const Proto* f, DumpState* D) in DumpUpvalues() 120 static void DumpDebug(const Proto* f, DumpState* D) in DumpDebug() 139 static void DumpFunction(const Proto* f, DumpState* D) in DumpFunction() 162 int luaU_dump (lua_State* L, const Proto* f, lua_Writer w, void* data, int strip) in luaU_dump()
|
D | lundump.c | 86 static void LoadCode(LoadState* S, Proto* f) in LoadCode() 94 static void LoadFunction(LoadState* S, Proto* f); 96 static void LoadConstants(LoadState* S, Proto* f) in LoadConstants() 125 f->p=luaM_newvector(S->L,n,Proto*); in LoadConstants() 135 static void LoadUpvalues(LoadState* S, Proto* f) in LoadUpvalues() 149 static void LoadDebug(LoadState* S, Proto* f) in LoadDebug() 171 static void LoadFunction(LoadState* S, Proto* f) in LoadFunction() 226 Proto* p=cl->l.p; in luaU_undump()
|
D | luac.c | 22 static void PrintFunction(const Proto* f, int full); 136 static const Proto* combine(lua_State* L, int n) in combine() 142 Proto* f; in combine() 166 const Proto* f; in pmain() 251 static void PrintConstant(const Proto* f, int i) in PrintConstant() 277 static void PrintCode(const Proto* f) in PrintCode() 378 static void PrintHeader(const Proto* f) in PrintHeader() 398 static void PrintDebug(const Proto* f) in PrintDebug() 425 static void PrintFunction(const Proto* f, int full) in PrintFunction()
|
D | lfunc.c | 110 Proto *luaF_newproto (lua_State *L) { in luaF_newproto() 111 Proto *f = &luaC_newobj(L, LUA_TPROTO, sizeof(Proto), NULL, 0)->p; in luaF_newproto() 135 void luaF_freeproto (lua_State *L, Proto *f) { in luaF_freeproto() 150 const char *luaF_getlocalname (const Proto *f, int local_number, int pc) { in luaF_getlocalname()
|
D | lundump.h | 20 LUAI_FUNC int luaU_dump (lua_State* L, const Proto* f, lua_Writer w, void* data, int strip);
|
D | ldebug.c | 100 static const char *upvalname (Proto *p, int uv) { in upvalname() 186 Proto *p = cl->l.p; in funcinfo() 303 static const char *getobjname (Proto *p, int lastpc, int reg, 310 static void kname (Proto *p, int pc, int c, const char **name) { in kname() 340 static int findsetreg (Proto *p, int lastpc, int reg) { in findsetreg() 391 static const char *getobjname (Proto *p, int lastpc, int reg, in getobjname() 447 Proto *p = ci_func(ci)->p; /* calling function */ in getfuncname()
|
D | lparser.h | 97 Proto *f; /* current function header */
|
D | lobject.h | 467 typedef struct Proto { struct 471 struct Proto **p; /* functions defined inside the function */ argument 489 } Proto; argument 525 struct Proto *p;
|
D | lparser.c | 167 Proto *f = fs->f; in registerlocalvar() 232 Proto *f = fs->f; in newupvalue() 498 static Proto *addprototype (LexState *ls) { in addprototype() 499 Proto *clp; in addprototype() 502 Proto *f = fs->f; /* prototype of current function */ in addprototype() 505 luaM_growvector(L, f->p, fs->np, f->sizep, Proto *, MAXARG_Bx, "functions"); in addprototype() 529 Proto *f; in open_func() 558 Proto *f = fs->f; in close_func() 567 luaM_reallocvector(L, f->p, f->sizep, fs->np, Proto *); in close_func() 762 Proto *f = fs->f; in parlist()
|
D | lgc.h | 152 LUAI_FUNC void luaC_barrierproto_ (lua_State *L, Proto *p, Closure *c);
|
D | lstate.h | 191 struct Proto p;
|
D | lgc.c | 172 LUAI_FUNC void luaC_barrierproto_ (lua_State *L, Proto *p, Closure *c) { in luaC_barrierproto_() 457 static int traverseproto (global_State *g, Proto *f) { in traverseproto() 470 return sizeof(Proto) + sizeof(Instruction) * f->sizecode + in traverseproto() 471 sizeof(Proto *) * f->sizep + in traverseproto() 555 Proto *p = gco2p(o); in propagatemark()
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Dhcp4Dxe/ |
D | Dhcp4Impl.h | 141 #define DHCP_INSTANCE_FROM_THIS(Proto) \ argument 142 CR ((Proto), DHCP_PROTOCOL, Dhcp4Protocol, DHCP_PROTOCOL_SIGNATURE)
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/ |
D | Ip4Input.h | 83 #define IP4_ASSEMBLE_HASH(Dst, Src, Id, Proto) \ argument 84 (((Dst) + (Src) + ((Id) << 16) + (Proto)) % IP4_ASSEMLE_HASH_SIZE)
|
D | Ip4Config2Impl.h | 34 #define IP4_CONFIG2_INSTANCE_FROM_PROTOCOL(Proto) \ argument 35 CR ((Proto), \
|
D | Ip4Input.c | 982 UINT16 Proto; in Ip4InstanceFrameAcceptable() local 1008 Proto = Head->Protocol; in Ip4InstanceFrameAcceptable() 1010 …if ((Proto == EFI_IP_PROTO_ICMP) && (!Config->AcceptAnyProtocol) && (Proto != Config->DefaultProto… in Ip4InstanceFrameAcceptable() 1019 Proto = Icmp.IpHead.Protocol; in Ip4InstanceFrameAcceptable() 1026 if (!Config->AcceptAnyProtocol && (Proto != Config->DefaultProtocol)) { in Ip4InstanceFrameAcceptable()
|
/device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/ |
D | Ip6ConfigImpl.h | 33 #define IP6_CONFIG_INSTANCE_FROM_PROTOCOL(Proto) \ argument 34 CR ((Proto), \
|
D | Ip6Input.c | 1292 UINT8 *Proto; in Ip6InstanceFrameAcceptable() local 1299 Proto = NULL; in Ip6InstanceFrameAcceptable() 1330 &Proto, in Ip6InstanceFrameAcceptable() 1342 if ((*Proto == IP6_ICMP) && (!Config->AcceptAnyProtocol) && (*Proto != Config->DefaultProtocol)) { in Ip6InstanceFrameAcceptable() 1364 &Proto, in Ip6InstanceFrameAcceptable() 1377 if (!Config->AcceptAnyProtocol && (*Proto != Config->DefaultProtocol)) { in Ip6InstanceFrameAcceptable()
|
/device/linaro/bootloader/edk2/NetworkPkg/Application/IpsecConfig/ |
D | PolicyEntryOperation.c | 480 (*Data)->ProcessingPolicy->Proto = EfiIPsecESP; in CreateSpdEntry() 484 &(*Data)->ProcessingPolicy->Proto, in CreateSpdEntry() 638 &(*SaId)->Proto, in CreateSadEntry() 972 if ((*SaId)->Proto == EfiIPsecAH) { in CreateSadEntry() 1476 OldData->ProcessingPolicy->Proto = NewData->ProcessingPolicy->Proto; in CombineSpdEntry() 1570 NewSaId->Proto = OldSaId->Proto; in CombineSadEntry() 1571 } else if (NewSaId->Proto != OldSaId->Proto) { in CombineSadEntry() 1619 if (NewSaId->Proto == EfiIPsecAH) { in CombineSadEntry() 1637 if (NewSaId->Proto == EfiIPsecESP && OldSaId->Proto == EfiIPsecAH) { in CombineSadEntry()
|
D | Dump.c | 345 String1 = MapIntegerToString (Data->ProcessingPolicy->Proto, mMapIpSecProtocol); in DumpSpdEntry() 401 Print (L"0x%x %s ", (UINTN) SaId->Spi, MapIntegerToString (SaId->Proto, mMapIpSecProtocol)); in DumpSadEntry() 443 if (SaId->Proto == EfiIPsecAH) { in DumpSadEntry()
|
D | Indexer.c | 133 &Indexer->SaId.Proto, in ConstructSadIndexer()
|
/device/linaro/bootloader/edk2/MdePkg/Include/Protocol/ |
D | IpSecConfig.h | 291 EFI_IPSEC_PROTOCOL_TYPE Proto; member 319 EFI_IPSEC_PROTOCOL_TYPE Proto; member
|