HomeSort by relevance Sort by last modified time
    Searched refs:interface (Results 526 - 550 of 4065) sorted by null

<<21222324252627282930>>

  /external/deqp/external/openglcts/modules/glesext/tessellation_shader/
esextcTessellationShaderProgramInterfaces.cpp 340 glw::GLenum interface = interfaces[n_interface]; local
342 if ((interface == GL_SHADER_STORAGE_BLOCK || interface == GL_BUFFER_VARIABLE) &&
348 if (interface == GL_ATOMIC_COUNTER_BUFFER && !m_is_atomic_counters_supported)
353 /* For each interface, we want to check whether a specific resource
361 switch (interface)
419 TCU_FAIL("Unrecognized interface type");
421 } /* switch (interface) */
429 if (interface == GL_ATOMIC_COUNTER_BUFFER)
431 /* We only need a single iteration run for this interface */
    [all...]
  /external/libbrillo/brillo/glib/
dbus.cc 110 const char* interface,
115 G_TYPE_STRING, interface, G_TYPE_INVALID,
135 const char* interface,
138 connection, name, path, interface, connect_to_name_owner)) {
141 // Equivalent to Proxy(connection, name, path, interface, false).
145 const char* interface)
146 : object_(GetGProxy(connection, name, path, interface, false)) {
152 const char* interface)
153 : object_(GetGPeerProxy(connection, path, interface)) {
171 const char* interface,
    [all...]
  /external/autotest/client/common_lib/cros/network/
iw_runner.py 57 # modes: List of strings containing interface modes supported, such as "AP".
130 @param interface_name: string name of interface (e.g. 'wlan0').
154 """Defines an interface to the 'iw' command."""
257 def add_interface(self, phy, interface, interface_type):
259 Add an interface to a WiFi PHY.
261 @param phy: string name of PHY to add an interface to.
262 @param interface: string name of interface to add.
263 @param interface_type: string type of interface to add (e.g. 'monitor').
266 self._run('%s phy %s interface add %s type %s'
    [all...]
  /external/dhcpcd-6.8.2/
dhcp6.h 237 size_t dhcp6_find_delegates(struct interface *);
238 int dhcp6_has_public_addr(const struct interface *);
239 int dhcp6_start(struct interface *, enum DH6S);
240 void dhcp6_reboot(struct interface *);
241 ssize_t dhcp6_env(char **, const char *, const struct interface *,
243 void dhcp6_free(struct interface *);
246 int dhcp6_dadcompleted(const struct interface *);
247 void dhcp6_drop(struct interface *, const char *);
248 int dhcp6_dump(struct interface *);
dhcp.h 285 struct rt_head *get_option_routes(struct interface *,
288 const struct interface *);
290 uint32_t dhcp_xid(const struct interface *);
294 ssize_t make_message(struct dhcp_message **, const struct interface *,
298 void dhcp_handleifa(int, struct interface *,
302 void dhcp_drop(struct interface *, const char *);
303 void dhcp_start(struct interface *);
304 void dhcp_stop(struct interface *);
306 void dhcp_inform(struct interface *);
307 void dhcp_bind(struct interface *, struct arp_state *)
    [all...]
dhcpcd.h 56 /* If the interface does not support carrier status (ie PPP),
60 struct interface { struct
62 TAILQ_ENTRY(interface) next;
83 TAILQ_HEAD(if_head, interface);
174 void dhcpcd_dropinterface(struct interface *, const char *);
175 int dhcpcd_selectprofile(struct interface *, const char *);
178 void dhcpcd_initstate(struct interface *, unsigned long long);
  /external/libusb/examples/
testlibusb.c 64 static void print_altsetting(const struct libusb_interface_descriptor *interface)
68 printf(" Interface:\n");
69 printf(" bInterfaceNumber: %d\n", interface->bInterfaceNumber);
70 printf(" bAlternateSetting: %d\n", interface->bAlternateSetting);
71 printf(" bNumEndpoints: %d\n", interface->bNumEndpoints);
72 printf(" bInterfaceClass: %d\n", interface->bInterfaceClass);
73 printf(" bInterfaceSubClass: %d\n", interface->bInterfaceSubClass);
74 printf(" bInterfaceProtocol: %d\n", interface->bInterfaceProtocol);
75 printf(" iInterface: %d\n", interface->iInterface);
77 for (i = 0; i < interface->bNumEndpoints; i++)
    [all...]
  /device/google/accessory/arduino/USB_Host_Shield/
Usb.h 39 #define bmREQ_SET USB_SETUP_HOST_TO_DEVICE|USB_SETUP_TYPE_STANDARD|USB_SETUP_RECIPIENT_DEVICE //set request type for all but 'set feature' and 'set interface'
40 #define bmREQ_CL_GET_INTF USB_SETUP_DEVICE_TO_HOST|USB_SETUP_TYPE_CLASS|USB_SETUP_RECIPIENT_INTERFACE //get interface request type
141 byte setProto( byte addr, byte ep, byte interface, byte protocol, unsigned int nak_limit = USB_NAK_LIMIT );
142 byte getProto( byte addr, byte ep, byte interface, char* dataptr, unsigned int nak_limit = USB_NAK_LIMIT );
144 byte setReport( byte addr, byte ep, unsigned int nbytes, byte interface, byte report_type, byte report_id, char* dataptr, unsigned int nak_limit = USB_NAK_LIMIT );
145 byte getReport( byte addr, byte ep, unsigned int nbytes, byte interface, byte report_type, byte report_id, char* dataptr, unsigned int nak_limit = USB_NAK_LIMIT );
146 byte getIdle( byte addr, byte ep, byte interface, byte reportID, char* dataptr, unsigned int nak_limit = USB_NAK_LIMIT );
147 byte setIdle( byte addr, byte ep, byte interface, byte reportID, byte duration, unsigned int nak_limit = USB_NAK_LIMIT );
181 inline byte USB::setProto( byte addr, byte ep, byte interface, byte protocol, unsigned int nak_limit ) {
182 return( ctrlReq( addr, ep, bmREQ_HIDOUT, HID_REQUEST_SET_PROTOCOL, protocol, 0x00, interface, 0x0000, NULL, nak_limit ));
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/
encoding.go 9 // interface once can make a type useful in multiple encodings.
14 // BinaryMarshaler is the interface implemented by an object that can
18 type BinaryMarshaler interface {
22 // BinaryUnmarshaler is the interface implemented by an object that can
28 type BinaryUnmarshaler interface {
32 // TextMarshaler is the interface implemented by an object that can
36 type TextMarshaler interface {
40 // TextUnmarshaler is the interface implemented by an object that can
46 type TextUnmarshaler interface {
  /prebuilts/go/linux-x86/src/encoding/
encoding.go 9 // interface once can make a type useful in multiple encodings.
14 // BinaryMarshaler is the interface implemented by an object that can
18 type BinaryMarshaler interface {
22 // BinaryUnmarshaler is the interface implemented by an object that can
28 type BinaryUnmarshaler interface {
32 // TextMarshaler is the interface implemented by an object that can
36 type TextMarshaler interface {
40 // TextUnmarshaler is the interface implemented by an object that can
46 type TextUnmarshaler interface {
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRRuntimeException.h 34 @interface ANTLRRuntimeException : NSException {
55 @interface ANTLRIllegalArgumentException : ANTLRRuntimeException {
68 @interface ANTLRIllegalStateException : ANTLRRuntimeException {
81 @interface ANTLRNoSuchElementException : ANTLRRuntimeException {
94 @interface ANTLRRewriteEarlyExitException : ANTLRRuntimeException {
102 @interface ANTLRUnsupportedOperationException : ANTLRRuntimeException {
  /external/autotest/client/site_tests/network_UdevRename/
network_UdevRename.py 13 """Finds the driver associated with network interface.
15 @param ifname Interface name
16 @return String containing the kernel driver name for this interface
27 @return List containing a string for each interface name
33 """Finds an interface that we can unload the driver for.
35 Retrieves a dict containing the name of a network interface
39 @param typelist An iterable of interface prefixes to filter from. Only
40 return an interface that matches one of these prefixes
41 @return Dict containing a 'intf' key with the interface name
54 logging.debug('Could not find an interface')
    [all...]
  /external/wayland/src/
wayland-client-core.h 49 * should normally use the higher level interface generated by the scanner to
134 const struct wl_interface *interface);
145 const struct wl_interface *interface,
151 const struct wl_interface *interface,
158 const struct wl_interface *interface);
164 const struct wl_interface *interface,
231 const struct wl_interface **interface,
  /prebuilts/go/darwin-x86/src/net/
interface_stub.go 11 // interface.
12 func interfaceTable(ifindex int) ([]Interface, error) {
18 // interface.
19 func interfaceAddrTable(ifi *Interface) ([]Addr, error) {
24 // interface.
25 func interfaceMulticastAddrTable(ifi *Interface) ([]Addr, error) {
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug184.go 15 type Reader interface {
22 // implicit interface conversion in assignment during return
29 // implicit interface conversion in multi-assignment during return
issue16008.go 24 type B interface {
29 type Tx interface {
49 var sink interface{}
issue17449.go 13 elems []interface{}
18 func (l *PriorityList) remove(i int) interface{} {
24 func (l *PriorityList) Next() interface{} {
issue23545.go 22 func dummyID(x int) [Size]interface{} {
23 var out [Size]interface{}
30 type OutputID [Size]interface{}
issue4518.go 14 func F(e interface{}) (int, int) {
23 func bogus1(d interface{}) (int, int) {
39 func bogus3(d interface{}) (int, int) {
  /prebuilts/go/darwin-x86/test/interface/
returntype.go 7 // Test interface methods with different return types are distinct.
17 type I1 interface { Name() int8 }
18 type I2 interface { Name() int64 }
  /prebuilts/go/darwin-x86/test/ken/
interfun.go 15 type I1 interface {
19 type I2 interface {
49 // call interface
  /prebuilts/go/linux-x86/src/net/
interface_stub.go 11 // interface.
12 func interfaceTable(ifindex int) ([]Interface, error) {
18 // interface.
19 func interfaceAddrTable(ifi *Interface) ([]Addr, error) {
24 // interface.
25 func interfaceMulticastAddrTable(ifi *Interface) ([]Addr, error) {
  /prebuilts/go/linux-x86/test/fixedbugs/
bug184.go 15 type Reader interface {
22 // implicit interface conversion in assignment during return
29 // implicit interface conversion in multi-assignment during return
issue16008.go 24 type B interface {
29 type Tx interface {
49 var sink interface{}
issue17449.go 13 elems []interface{}
18 func (l *PriorityList) remove(i int) interface{} {
24 func (l *PriorityList) Next() interface{} {

Completed in 590 milliseconds

<<21222324252627282930>>