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

1 2

  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiHandleParsingLib/
UefiHandleParsingLib.h 174 EFI_STRING_ID StringId;
  /external/syslinux/efi32/include/efi/
efi_nii.h 15 Added StringId[4] to structure.
56 CHAR8 StringId[4];
  /external/syslinux/efi64/include/efi/
efi_nii.h 15 Added StringId[4] to structure.
56 CHAR8 StringId[4];
  /external/syslinux/gnu-efi/gnu-efi-3.0/inc/
efi_nii.h 15 Added StringId[4] to structure.
56 CHAR8 StringId[4];
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/EfiNetworkInterfaceIdentifier/
EfiNetworkInterfaceIdentifier.h 20 Added StringId[4] to structure.
80 CHAR8 StringId[4];
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
DriverHealth.h 65 EFI_STRING_ID StringId;
NetworkInterfaceIdentifier.h 70 CHAR8 StringId[4];///< A four-character ASCII string that is sent in the class identifier field of
  /external/syslinux/gpxe/src/include/gpxe/efi/Protocol/
NetworkInterfaceIdentifier.h 58 CHAR8 StringId[4];///< A four-character ASCII string that is sent in the class identifier field of
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/FrameworkHiiOnUefiHiiThunk/
Strings.c 95 @param StringId The String ID. If StringId is 0, a new String Token
96 is created. Otherwise, the String Token StringId is
101 The new String Token ID is returned in StringId if
102 *StringId is 0 on input.
111 IN OUT STRING_REF *StringId
116 NewStringId = HiiSetString (ThunkContext->UefiHiiHandle, *StringId, NewString, Rfc4646AsciiLanguage);
117 *StringId = NewStringId;
162 EFI_STRING_ID StringId;
169 StringId = (EFI_STRING_ID) 0;
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/BdsDxe/DeviceMngr/
DeviceManager.h 113 EFI_STRING_ID StringId;
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/DeviceManagerLib/
DeviceManager.h 108 EFI_STRING_ID StringId;
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/VlanConfigDxe/
VlanConfigImpl.c 360 EFI_STRING_ID StringId;
430 StringId = HiiSetString (PrivateData->HiiHandle, 0, VlanStr, NULL);
431 ASSERT (StringId != 0);
438 StringId,
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel2CommandsLib/
TimeDate.c 639 EFI_STRING_ID StringId;
879 ShellPrintHiiEx (-1, -1, NULL, TimeZoneList[LoopVar].StringId, gShellLevel2HiiHandle);
902 ShellPrintHiiEx (-1, -1, NULL, TimeZoneList[LoopVar].StringId, gShellLevel2HiiHandle);
956 ShellPrintHiiEx (-1, -1, NULL, TimeZoneList[LoopVar].StringId, gShellLevel2HiiHandle);
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/SmbiosMeasurementDxe/
SmbiosMeasurementDxe.c 194 @param StringId SMBIOS string ID
202 IN SMBIOS_TABLE_STRING StringId,
244 if (StringsNumber == StringId) {
269 SMBIOS_TABLE_STRING StringId;
285 CopyMem (&StringId, (UINT8 *)TableEntry + Filter[Index].Offset, sizeof(StringId));
286 if (StringId != 0) {
288 String = GetSmbiosStringById (TableEntry, StringId, &StringLen);
290 //DEBUG ((EFI_D_INFO,"StrId(0x%x)-%a(%d)\n", StringId, String, StringLen));
  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Protocol/
DisplayProtocol.h 93 // StringId for INCONSITENT_IF or WARNING_IF
95 EFI_STRING_ID StringId;
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6ConfigNv.c 698 EFI_STRING_ID StringId;
707 StringId = HiiSetString (
713 if (StringId == 0) {
731 StringId = HiiSetString (
737 if (StringId == 0) {
773 StringId = HiiSetString (
779 if (StringId == 0) {
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/StrGather/
StrGather.c 883 UINT16 StringId;
888 StringId = STRING_ID_INVALID;
889 StringDBAddStringIdentifier (StringIdentifier, &StringId, 0);
    [all...]
StringDB.c 188 UINT16 StringId,
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/UefiStrGather/
StringDB.c 100 UINT16 StringId,
    [all...]
StrGather.c 1073 UINT16 StringId;
1078 StringId = STRING_ID_INVALID;
1079 StringDBAddStringIdentifier (StringIdentifier, &StringId, 0);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/SetupBrowserDxe/
Setup.c 985 EFI_STRING_ID StringId;
987 StringId = HiiSetString (HiiHandle, 0, String, NULL);
988 ASSERT (StringId != 0);
990 return StringId;
997 @param StringId Id of the string in HII database.
1005 IN EFI_STRING_ID StringId,
1012 HiiSetString (HiiHandle, StringId, &NullChar, NULL);
1018 Get the string based on the StringId and HII Package List Handle.
    [all...]
  /art/dexlayout/
dex_ir.h 57 class StringId;
81 virtual void Dispatch(const StringId* string_id) = 0;
168 std::vector<std::unique_ptr<StringId>>& StringIds() { return string_ids_.Collection(); }
217 StringId* GetStringId(uint32_t index) {
250 StringId* GetStringIdOrNullPtr(uint32_t index) {
331 CollectionVector<StringId> string_ids_;
475 class StringId : public IndexedItem {
477 explicit StringId(StringData* string_data) : string_data_(string_data) {
480 ~StringId() OVERRIDE { }
492 DISALLOW_COPY_AND_ASSIGN(StringId);
    [all...]
  /art/runtime/
dex_file.h 148 struct StringId {
152 DISALLOW_COPY_AND_ASSIGN(StringId);
545 // Returns the StringId at the specified index.
546 const StringId& GetStringId(dex::StringIndex idx) const {
551 dex::StringIndex GetIndexForStringId(const StringId& string_id) const {
557 int32_t GetStringLength(const StringId& string_id) const;
562 const char* GetStringDataAndUtf16Length(const StringId& string_id, uint32_t* utf16_length) const;
564 const char* GetStringData(const StringId& string_id) const;
572 const StringId* FindStringId(const char* string) const;
577 const StringId* FindStringId(const uint16_t* string, size_t length) const
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Include/Common/
UefiInternalFormRepresentation.h 304 EFI_STRING_ID StringId;
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Include/
EfiHii.h 276 EFI_STRING_ID StringId;
    [all...]

Completed in 759 milliseconds

1 2