HomeSort by relevance Sort by last modified time
    Searched defs:Setting (Results 1 - 9 of 9) sorted by null

  /external/skia/src/sksl/ir/
SkSLSetting.h 17 * Represents a compile-time constant setting, such as sk_Caps.fbFetchSupport. These are generally
20 struct Setting : public Expression {
21 Setting(int offset, String name, std::unique_ptr<Expression> value)
32 return std::unique_ptr<Expression>(new Setting(fOffset, fName, fValue->clone()));
  /external/skqp/src/sksl/ir/
SkSLSetting.h 17 * Represents a compile-time constant setting, such as sk_Caps.fbFetchSupport. These are generally
20 struct Setting : public Expression {
21 Setting(int offset, String name, std::unique_ptr<Expression> value)
32 return std::unique_ptr<Expression>(new Setting(fOffset, fName, fValue->clone()));
  /external/grpc-grpc/tools/codegen/core/
gen_settings_ids.py 23 Setting = collections.namedtuple('Setting', 'id default min max on_error')
28 'enum name setting')
32 Setting(1, 4096, 0, 0xffffffff, clamp_invalid_value),
34 Setting(2, 1, 0, 1, disconnect_on_invalid_value('PROTOCOL_ERROR')),
36 Setting(3, 0xffffffff, 0, 0xffffffff,
39 Setting(4, 65535, 0, 0x7fffffff,
42 Setting(5, 16384, 16384, 16777215,
45 Setting(6, _MAX_HEADER_LIST_SIZE, 0, _MAX_HEADER_LIST_SIZE,
48 Setting(0xfe03, 0, 0, 1, clamp_invalid_value)
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbBusDxe/
UsbEnumer.c 302 Select an alternate setting for the interface.
304 settings. Only one setting is active. It will
308 @param Alternate The alternate setting number to locate.
310 @retval EFI_NOT_FOUND There is no setting with this alternate index.
311 @retval EFI_SUCCESS The interface is set to Alternate setting.
320 USB_INTERFACE_SETTING *Setting;
324 // Locate the active alternate setting
326 Setting = NULL;
330 Setting = IfDesc->Settings[Index];
332 if (Setting->Desc.AlternateSetting == Alternate) {
    [all...]
UsbDesc.c 20 Free the interface setting descriptor.
22 @param Setting The descriptor to free.
27 IN USB_INTERFACE_SETTING *Setting
33 if (Setting->Endpoints != NULL) {
35 // Each interface setting may have several endpoints, free them first.
37 for (Index = 0; Index < Setting->Desc.NumEndpoints; Index++) {
38 Ep = Setting->Endpoints[Index];
48 if (Setting->Desc.NumEndpoints > 0) {
49 FreePool (Setting->Endpoints);
53 FreePool (Setting);
    [all...]
UsbHub.c 555 EFI_USB_INTERFACE_DESCRIPTOR *Setting;
559 // the hub will has a default setting of single TT.
561 Setting = &UsbIf->IfSetting->Desc;
563 if ((Setting->InterfaceClass == USB_HUB_CLASS_CODE) &&
564 (Setting->InterfaceSubClass == USB_HUB_SUBCLASS_CODE)) {
695 USB_INTERFACE_SETTING *Setting;
707 Setting = HubIf->IfSetting;
710 NumEndpoints = Setting->Desc.NumEndpoints;
713 ASSERT ((Setting->Endpoints != NULL) && (Setting->Endpoints[Index] != NULL));
    [all...]
  /external/syzkaller/vendor/golang.org/x/net/http2/
http2.go 113 // Setting is a setting parameter: which setting it is, and its value.
114 type Setting struct {
115 // ID is which setting is being set.
123 func (s Setting) String() string {
127 // Valid reports whether the setting is valid.
128 func (s Setting) Valid() error {
147 // A SettingID is an HTTP/2 setting as defined in
  /external/guice/extensions/struts2/lib/
freemarker-2.3.16.jar 
  /external/grpc-grpc-java/netty/shaded/
grpc-netty-shaded-1.14.0.jar 

Completed in 241 milliseconds