HomeSort by relevance Sort by last modified time
    Searched refs:Descriptor (Results 226 - 250 of 667) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/
LegacyBios.c 249 EFI_GCD_MEMORY_SPACE_DESCRIPTOR Descriptor;
258 gDS->GetMemorySpaceDescriptor (Address, &Descriptor);
259 if (Descriptor.GcdMemoryType == EfiGcdMemoryTypeSystemMemory) {
801 EFI_GCD_MEMORY_SPACE_DESCRIPTOR Descriptor;
867 gDS->GetMemorySpaceDescriptor (StartAddress, &Descriptor);
868 if (Descriptor.GcdMemoryType != EfiGcdMemoryTypeReserved) {
869 StartAddress = Descriptor.BaseAddress + Descriptor.Length;
872 Length = MIN (Descriptor.Length, 0xa0000 - StartAddress);
884 gDS->GetMemorySpaceDescriptor (StartAddress, &Descriptor);
    [all...]
  /external/javassist/src/main/javassist/bytecode/
Bytecode.java 842 * @param type the descriptor of the field type.
844 * @see Descriptor#of(CtClass)
850 growStack(Descriptor.dataSize(type) - 1);
858 * @param type the descriptor of the field type.
860 * @see Descriptor#of(CtClass)
866 growStack(Descriptor.dataSize(type) - 1);
874 * @param type the descriptor of the field type.
876 * @see Descriptor#of(CtClass)
882 growStack(Descriptor.dataSize(type));
890 * @param type the descriptor of the field type
    [all...]
  /external/protobuf/ruby/ext/google/protobuf_c/
encode_decode.c 299 Descriptor* desc) {
482 Descriptor* desc) {
496 Descriptor* desc) {
563 Descriptor* desc = ruby_to_Descriptor(get_def_obj((void*)msgdef));
604 static const upb_handlers *new_fill_handlers(Descriptor* desc,
616 const upb_handlers* get_fill_handlers(Descriptor* desc) {
626 const upb_pbdecodermethod *new_fillmsg_decodermethod(Descriptor* desc,
635 static const upb_pbdecodermethod *msgdef_decodermethod(Descriptor* desc) {
643 static const upb_json_parsermethod *msgdef_jsonparsermethod(Descriptor* desc) {
700 VALUE descriptor = rb_ivar_get(klass, descriptor_instancevar_interned) local
741 VALUE descriptor = rb_ivar_get(klass, descriptor_instancevar_interned); local
880 VALUE descriptor; local
1155 VALUE descriptor = rb_ivar_get(klass, descriptor_instancevar_interned); local
1190 VALUE descriptor = rb_ivar_get(klass, descriptor_instancevar_interned); local
    [all...]
protobuf.h 42 struct Descriptor;
53 typedef struct Descriptor Descriptor;
84 Descriptor ---------------|-----------> upb_msgdef (enum types)|
109 struct Descriptor {
139 VALUE descriptor; member in struct:MessageBuilderContext
144 VALUE descriptor; member in struct:OneofBuilderContext
189 Descriptor* ruby_to_Descriptor(VALUE value);
252 VALUE descriptor,
266 VALUE descriptor,
478 Descriptor* descriptor; \/\/ kept alive by self.class.descriptor reference. member in struct:MessageHeader
    [all...]
  /external/protobuf/csharp/src/Google.Protobuf.Test/TestProtos/
UnittestProto3.cs 16 #region Descriptor
17 /// <summary>File descriptor for google/protobuf/unittest_proto3.proto</summary>
18 public static pbr::FileDescriptor Descriptor {
19 get { return descriptor; }
21 private static pbr::FileDescriptor descriptor; field in class:Google.Protobuf.TestProtos.UnittestProto3Reflection
153 descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
154 new pbr::FileDescriptor[] { global::Google.Protobuf.TestProtos.UnittestImportProto3Reflection.Descriptor, },
243 public static pbr::MessageDescriptor Descriptor {
244 get { return global::Google.Protobuf.TestProtos.UnittestProto3Reflection.Descriptor.MessageTypes[0]; }
247 pbr::MessageDescriptor pb::IMessage.Descriptor {
    [all...]
  /external/protobuf/src/google/protobuf/
descriptor.cc 47 #include <google/protobuf/descriptor.h>
49 #include <google/protobuf/descriptor.pb.h>
238 typedef pair<const Descriptor*, int> DescriptorIntPair;
271 const Descriptor* descriptor; member in union:google::protobuf::__anon29858::Symbol::__anon29859
281 inline Symbol() : type(NULL_SYMBOL) { descriptor = NULL; }
297 CONSTRUCTOR(Descriptor , MESSAGE , descriptor )
310 case MESSAGE : return descriptor ->file();
344 // through all the extensions that extend a given Descriptor, and a
5632 const Descriptor* descriptor = options_descriptor; local
6065 const Descriptor* descriptor = message->GetDescriptor(); local
    [all...]
test_util.h 137 // base_descriptor must be a descriptor for TestAllTypes or
142 explicit ReflectionTester(const Descriptor* base_descriptor);
180 const Descriptor* base_descriptor_;
  /external/protobuf/java/core/src/test/java/com/google/protobuf/
DescriptorsTest.java 38 import com.google.protobuf.Descriptors.Descriptor;
104 Descriptor messageType = TestAllTypes.getDescriptor();
152 Descriptor messageType = TestAllTypes.getDescriptor();
153 Descriptor nestedType = TestAllTypes.NestedMessage.getDescriptor();
196 Descriptor messageType = TestAllTypes.getDescriptor();
287 Descriptor d = TestAllTypes.getDescriptor();
365 // Get the descriptor indirectly from a dependent proto class. This is to
368 Descriptor descriptor = local
373 descriptor.getOptions().hasExtension(UnittestCustomOptions.messageOpt1))
    [all...]
TextFormatParseInfoTreeTest.java 33 import com.google.protobuf.Descriptors.Descriptor;
44 private static final Descriptor DESCRIPTOR = TestAllTypes.getDescriptor();
46 DESCRIPTOR.findFieldByName("optional_int32");
48 DESCRIPTOR.findFieldByName("optional_boolean");
50 DESCRIPTOR.findFieldByName("repeated_int32");
52 DESCRIPTOR.findFieldByName("optional_nested_message");
54 DESCRIPTOR.findFieldByName("repeated_nested_message");
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Include/
TianoSpecApi.h 110 EFI_NOT_FOUND - No descriptor contains the desired space.
176 OUT EFI_GCD_MEMORY_SPACE_DESCRIPTOR * Descriptor
182 Retrieves the descriptor for a memory region containing a specified address.
188 Descriptor - Specified length
194 EFI_SUCCESS - Successfully get memory space descriptor.
247 MemorySpaceMap - Descriptor array
328 EFI_NOT_FOUND - No descriptor contains the desired space.
394 OUT EFI_GCD_IO_SPACE_DESCRIPTOR * Descriptor
400 Retrieves the descriptor for an I/O region containing a specified address.
406 Descriptor - Specified length
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbBotPei/
PeiUsbLib.c 21 Get a given usb descriptor.
27 @param DescriptorLength Request descriptor Length.
28 @param Descriptor Request descriptor.
31 @retval EFI_SUCCESS Usb descriptor is obtained successfully.
32 @retval EFI_DEVICE_ERROR Cannot get the usb descriptor due to a hardware error.
43 OUT VOID *Descriptor
62 Descriptor,
  /device/linaro/bootloader/edk2/MdePkg/Include/Library/
UefiUsbLib.h 23 Get the descriptor of the specified USB HID interface.
26 and Interface, and return the HID descriptor in HidDescriptor.
32 @param HidDescriptor Pointer to the USB HID descriptor that was retrieved from
51 Get the report descriptor of the specified USB HID interface.
53 Submit a USB get HID report descriptor request for the USB device specified by
54 UsbIo and Interface, and return the report descriptor in DescriptorBuffer.
61 @param DescriptorBuffer A pointer to the buffer to store the report class descriptor.
183 Set the report descriptor of the specified USB HID interface.
186 Interface, ReportId, and ReportType, and set the report descriptor using the
196 @param Report A pointer to the report descriptor buffer to set.
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Pi/
PiDxeCis.h 272 No descriptor contains the desired space.
346 Retrieves the descriptor for a memory region containing a specified address.
349 @param Descriptor A pointer to a caller allocated descriptor.
351 @retval EFI_SUCCESS The descriptor for the memory resource region containing
352 BaseAddress was returned in Descriptor.
353 @retval EFI_INVALID_PARAMETER Descriptor is NULL.
361 OUT EFI_GCD_MEMORY_SPACE_DESCRIPTOR *Descriptor
564 Retrieves the descriptor for an I/O region containing a specified address.
567 @param Descriptor A pointer to a caller allocated descriptor.
    [all...]
  /external/protobuf/conformance/
conformance_cpp.cc 42 using google::protobuf::Descriptor;
54 static string GetTypeUrl(const Descriptor* message) {
199 type_url = new string(GetTypeUrl(TestAllTypes::descriptor()));
  /external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
Api.cs 16 #region Descriptor
17 /// <summary>File descriptor for google/protobuf/api.proto</summary>
18 public static pbr::FileDescriptor Descriptor {
19 get { return descriptor; }
21 private static pbr::FileDescriptor descriptor; field in class:Google.Protobuf.WellKnownTypes.ApiReflection
42 descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
43 new pbr::FileDescriptor[] { global::Google.Protobuf.WellKnownTypes.SourceContextReflection.Descriptor, global::Google.Protobuf.WellKnownTypes.TypeReflection.Descriptor, },
55 /// Api is a light-weight descriptor for a protocol buffer service.
62 public static pbr::MessageDescriptor Descriptor {
    [all...]
  /external/protobuf/src/google/protobuf/compiler/java/
java_context.cc 36 #include <google/protobuf/descriptor.h>
107 const Descriptor* message) {
194 bool Context::HasGeneratedMethods(const Descriptor* descriptor) const {
195 return enforce_lite_ || descriptor->file()->options().optimize_for() !=
  /external/protobuf/src/google/protobuf/compiler/javanano/
javanano_map_field.cc 72 const FieldDescriptor* KeyField(const FieldDescriptor* descriptor) {
73 GOOGLE_CHECK_EQ(FieldDescriptor::TYPE_MESSAGE, descriptor->type());
74 const Descriptor* message = descriptor->message_type();
79 const FieldDescriptor* ValueField(const FieldDescriptor* descriptor) {
80 GOOGLE_CHECK_EQ(FieldDescriptor::TYPE_MESSAGE, descriptor->type());
81 const Descriptor* message = descriptor->message_type();
87 const FieldDescriptor* descriptor, map<string, string>* variables) {
88 const FieldDescriptor* key = KeyField(descriptor);
    [all...]
  /external/protobuf/src/google/protobuf/compiler/objectivec/
objectivec_helpers.h 37 #include <google/protobuf/descriptor.h>
38 #include <google/protobuf/descriptor.pb.h>
80 // descriptor.
81 string ClassName(const Descriptor* descriptor);
82 string EnumName(const EnumDescriptor* descriptor);
85 // the descriptor.
86 string EnumValueName(const EnumValueDescriptor* descriptor);
88 // Returns the name of the enum value corresponding to the descriptor.
89 string EnumValueShortName(const EnumValueDescriptor* descriptor);
    [all...]
  /external/r8/src/main/java/com/android/tools/r8/graph/
JarApplicationReader.java 93 MethodHandleType type, Descriptor<? extends DexItem, ? extends Descriptor> fieldOrMethod) {
  /external/swiftshader/third_party/LLVM/lib/DebugInfo/
DWARFDebugArangeSet.cpp 66 // descriptor on the target system. This header is followed by a series
94 Descriptor arangeDescriptor;
135 bool operator()(const DWARFDebugArangeSet::Descriptor &desc) const {
  /external/syslinux/gpxe/src/include/gpxe/efi/Pi/
PiDxeCis.h 210 No descriptor contains the desired space.
284 Retrieves the descriptor for a memory region containing a specified address.
287 @param Descriptor A pointer to a caller allocated descriptor.
289 @retval EFI_SUCCESS The descriptor for the memory resource region containing
290 BaseAddress was returned in Descriptor.
291 @retval EFI_INVALID_PARAMETER Descriptor is NULL.
299 OUT EFI_GCD_MEMORY_SPACE_DESCRIPTOR *Descriptor
476 Retrieves the descriptor for an I/O region containing a specified address.
479 @param Descriptor A pointer to a caller allocated descriptor
    [all...]
  /hardware/interfaces/tests/msgq/1.0/default/
TestMsgQ.cpp 32 _hidl_cb(false /* ret */, MessageQueueSync::Descriptor());
54 _hidl_cb(false /* ret */, MessageQueueUnsync::Descriptor());
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/compiler/objectivec/
objectivec_helpers.h 37 #include <google/protobuf/descriptor.h>
38 #include <google/protobuf/descriptor.pb.h>
84 // descriptor.
85 string ClassName(const Descriptor* descriptor);
86 string EnumName(const EnumDescriptor* descriptor);
89 // the descriptor.
90 string EnumValueName(const EnumValueDescriptor* descriptor);
92 // Returns the name of the enum value corresponding to the descriptor.
93 string EnumValueShortName(const EnumValueDescriptor* descriptor);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbBusDxe/
UsbBus.h 540 Retrieve the device descriptor of the device.
543 @param Descriptor The variable to receive the device descriptor.
545 @retval EFI_SUCCESS The device descriptor is returned.
553 OUT EFI_USB_DEVICE_DESCRIPTOR *Descriptor
557 Return the configuration descriptor of the current active configuration.
560 @param Descriptor The USB configuration descriptor.
562 @retval EFI_SUCCESS The active configuration descriptor is returned.
571 OUT EFI_USB_CONFIG_DESCRIPTOR *Descriptor
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/LegacyRegion2Dxe/
LegacyRegion2.c 201 @param DescriptorCount[out] The number of region descriptor entries returned in the Descriptor
203 @param Descriptor[out] A pointer to a pointer used to return a buffer where the legacy
217 OUT EFI_LEGACY_REGION_DESCRIPTOR **Descriptor

Completed in 1940 milliseconds

1 2 3 4 5 6 7 8 91011>>