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

<<41424344454647484950>>

  /build/blueprint/bootstrap/
config.go 27 return pctx.VariableFunc(name, func(config interface{}) (string, error) {
64 type ConfigInterface interface {
71 type ConfigRemoveAbandonedFilesUnder interface {
78 type ConfigBlueprintToolLocation interface {
91 type ConfigStopBefore interface {
  /external/autotest/server/site_tests/platform_KernelErrorPaths/
platform_KernelErrorPaths.py 30 def _provoke_crash(self, interface, trigger, cpu):
38 @param interface: which filesystem interface to write into
49 interface)
52 command = "echo %s > %s" % (trigger, interface)
230 # Figure out which kernel crash interface is available.
231 interface = "/sys/kernel/debug/provoke-crash/DIRECT"
234 if not self._exists_on_client(interface):
235 interface = "/proc/breakme"
237 logging.info("Falling back to %s", interface)
    [all...]
  /external/wayland/src/
wayland-server.c 108 const struct wl_interface *interface; member in struct:wl_global
171 &object->interface->events[opcode]);
194 wl_argument_from_va_list(object->interface->events[opcode].signature,
210 &object->interface->events[opcode]);
233 wl_argument_from_va_list(object->interface->events[opcode].signature,
324 if (opcode >= object->interface->method_count) {
329 object->interface->name,
334 message = &object->interface->methods[opcode];
343 object->interface->name,
360 object->interface->name
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/testdata/
compound.go 109 func interface_ssa(a, b interface{}, x bool) interface{} {
110 var s interface{}
120 a := interface{}(3)
121 b := interface{}(4)
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/testdata/
compound.go 109 func interface_ssa(a, b interface{}, x bool) interface{} {
110 var s interface{}
120 a := interface{}(3)
121 b := interface{}(4)
  /prebuilts/go/darwin-x86/src/reflect/
set_test.go 30 if n := mv.MapIndex(ValueOf(1)).Interface().(int); n != 2 {
35 // convert interface key
36 m := make(map[interface{}]int)
43 if n := mv.MapIndex(ValueOf(1)).Interface().(int); n != 2 {
48 // convert interface value
49 m := make(map[int]interface{})
56 if n := mv.MapIndex(ValueOf(1)).Interface().(int); n != 2 {
61 // convert both interface key and interface value
62 m := make(map[interface{}]interface{}
    [all...]
  /prebuilts/go/linux-x86/src/reflect/
set_test.go 30 if n := mv.MapIndex(ValueOf(1)).Interface().(int); n != 2 {
35 // convert interface key
36 m := make(map[interface{}]int)
43 if n := mv.MapIndex(ValueOf(1)).Interface().(int); n != 2 {
48 // convert interface value
49 m := make(map[int]interface{})
56 if n := mv.MapIndex(ValueOf(1)).Interface().(int); n != 2 {
61 // convert both interface key and interface value
62 m := make(map[interface{}]interface{}
    [all...]
  /external/skia/src/gpu/vk/
GrVkCaps.cpp 288 bool stencil_format_supported(const GrVkInterface* interface,
293 GR_VK_CALL(interface, GetPhysicalDeviceFormatProperties(physDev, format, &props));
297 void GrVkCaps::initStencilFormat(const GrVkInterface* interface, VkPhysicalDevice physDev) {
308 if (stencil_format_supported(interface, physDev, VK_FORMAT_S8_UINT)) {
310 } else if (stencil_format_supported(interface, physDev, VK_FORMAT_D24_UNORM_S8_UINT)) {
313 SkASSERT(stencil_format_supported(interface, physDev, VK_FORMAT_D32_SFLOAT_S8_UINT));
318 void GrVkCaps::initConfigTable(const GrVkInterface* interface, VkPhysicalDevice physDev,
324 fConfigTable[i].init(interface, physDev, properties, format);
350 void GrVkCaps::ConfigInfo::initSampleCounts(const GrVkInterface* interface,
361 GR_VK_CALL(interface, GetPhysicalDeviceImageFormatProperties(physDev
    [all...]
  /external/skqp/src/gpu/vk/
GrVkCaps.cpp 284 bool stencil_format_supported(const GrVkInterface* interface,
289 GR_VK_CALL(interface, GetPhysicalDeviceFormatProperties(physDev, format, &props));
293 void GrVkCaps::initStencilFormat(const GrVkInterface* interface, VkPhysicalDevice physDev) {
304 if (stencil_format_supported(interface, physDev, VK_FORMAT_S8_UINT)) {
306 } else if (stencil_format_supported(interface, physDev, VK_FORMAT_D24_UNORM_S8_UINT)) {
309 SkASSERT(stencil_format_supported(interface, physDev, VK_FORMAT_D32_SFLOAT_S8_UINT));
314 void GrVkCaps::initConfigTable(const GrVkInterface* interface, VkPhysicalDevice physDev,
320 fConfigTable[i].init(interface, physDev, properties, format);
346 void GrVkCaps::ConfigInfo::initSampleCounts(const GrVkInterface* interface,
357 GR_VK_CALL(interface, GetPhysicalDeviceImageFormatProperties(physDev
    [all...]
  /system/connectivity/wificond/
server.cpp 73 LOG(WARNING) << "Ignore duplicate interface event callback registration";
77 LOG(INFO) << "New interface event callback registered";
88 LOG(INFO) << "Unregister interface event callback";
92 LOG(WARNING) << "Failed to find registered interface event callback"
99 InterfaceInfo interface; local
100 if (!SetupInterface(iface_name, &interface)) {
105 interface.name,
106 interface.index,
131 InterfaceInfo interface; local
132 if (!SetupInterface(iface_name, &interface)) {
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
gcinfo_test.go 44 verifyGCInfo(t, "stack eface", new(interface{}), infoEface)
55 verifyGCInfo(t, "heap eface", escape(new(interface{})), trimDead(infoEface))
60 func verifyGCInfo(t *testing.T, name string, p interface{}, mask0 []byte) {
90 var gcinfoSink interface{}
92 func escape(p interface{}) interface{} {
171 type Iface interface {
188 bssEface interface{}
198 dataEface interface{} = 42
  /prebuilts/go/linux-x86/src/runtime/
gcinfo_test.go 44 verifyGCInfo(t, "stack eface", new(interface{}), infoEface)
55 verifyGCInfo(t, "heap eface", escape(new(interface{})), trimDead(infoEface))
60 func verifyGCInfo(t *testing.T, name string, p interface{}, mask0 []byte) {
90 var gcinfoSink interface{}
92 func escape(p interface{}) interface{} {
171 type Iface interface {
188 bssEface interface{}
198 dataEface interface{} = 42
  /prebuilts/go/darwin-x86/src/sync/
map.go 12 // Map is like a Go map[interface{}]interface{} but is safe for concurrent use
51 dirty map[interface{}]*entry
64 m map[interface{}]*entry
70 var expunged = unsafe.Pointer(new(interface{}))
74 // p points to the interface{} value stored for the entry.
92 p unsafe.Pointer // *interface{}
95 func newEntry(i interface{}) *entry {
102 func (m *Map) Load(key interface{}) (value interface{}, ok bool)
    [all...]
  /prebuilts/go/linux-x86/src/sync/
map.go 12 // Map is like a Go map[interface{}]interface{} but is safe for concurrent use
51 dirty map[interface{}]*entry
64 m map[interface{}]*entry
70 var expunged = unsafe.Pointer(new(interface{}))
74 // p points to the interface{} value stored for the entry.
92 p unsafe.Pointer // *interface{}
95 func newEntry(i interface{}) *entry {
102 func (m *Map) Load(key interface{}) (value interface{}, ok bool)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
mshtml.h 22 typedef interface IHTMLFiltersCollection IHTMLFiltersCollection;
27 typedef interface IIE70DispatchEx IIE70DispatchEx;
32 typedef interface IIE80DispatchEx IIE80DispatchEx;
37 typedef interface IHTMLDOMConstructor IHTMLDOMConstructor;
42 typedef interface IHTMLCSSStyleDeclaration IHTMLCSSStyleDeclaration;
47 typedef interface IHTMLCSSStyleDeclaration2 IHTMLCSSStyleDeclaration2;
52 typedef interface IHTMLStyleEnabled IHTMLStyleEnabled;
57 typedef interface DispHTMLCSSStyleDeclaration DispHTMLCSSStyleDeclaration;
71 typedef interface IHTMLStyle IHTMLStyle;
76 typedef interface IHTMLStyle2 IHTMLStyle2
    [all...]
  /bionic/libc/kernel/uapi/linux/
usbdevice_fs.h 39 unsigned int interface; member in struct:usbdevfs_setinterface
48 unsigned int interface; member in struct:usbdevfs_getdriver
107 unsigned int interface; member in struct:usbdevfs_disconnect_claim
  /external/autotest/client/site_tests/cellular_Smoke/
cellular_Smoke.py 66 interface = self.test_env.shill.get_dbus_property(
68 logging.info('Expected interface for %s: %s',
69 service.object_path, interface)
72 interface)
  /external/autotest/server/site_tests/display_ResolutionList/
display_ResolutionList.py 53 for interface, width, height in resolution_list:
54 if not chameleon_port_name.startswith(interface):
57 test_name = "%s_%dx%d" % ((interface,) + test_resolution)
  /external/autotest/server/site_tests/network_WiFi_RoamDbus/
network_WiFi_RoamDbus.py 90 interface = self.context.client.wifi_if
91 current_bssid = self.context.client.iw_runner.get_current_bssid(interface)
98 self.context.client.request_roam_dbus(roam_to_bssid, interface)
  /external/kernel-headers/original/uapi/linux/
usbdevice_fs.h 58 unsigned int interface; member in struct:usbdevfs_setinterface
70 unsigned int interface; member in struct:usbdevfs_getdriver
119 int ifno; /* interface 0..N ; negative numbers reserved */
149 unsigned int interface; member in struct:usbdevfs_disconnect_claim
  /external/libbrillo/brillo/dbus/
exported_object_manager.cc 64 << "Attempting to signal interface removal for path " << path.value()
69 << "Attempted to remove interface " << interface_name << " from "
70 << path.value() << ", but this interface was never registered.";
96 for (const auto interface : interface2properties) {
97 interface.second.Run(&interfaces[interface.first]);
  /external/libusb/libusb/os/
haiku_usb_raw.h 89 } interface; member in union:__anon25886
163 uint32 interface; member in struct:__anon25886::__anon25900
171 uint32 interface; member in struct:__anon25886::__anon25901
linux_usbfs.h 54 unsigned int interface; member in struct:usbfs_setinterface
61 unsigned int interface; member in struct:usbfs_getdriver
113 int ifno; /* interface 0..N ; negative numbers reserved */
134 unsigned int interface; member in struct:usbfs_disconnect_claim
  /external/lzma/CS/7zip/
ICoder.cs 23 public interface ICodeProgress
37 public interface ICoder
65 public interface ICoder2
143 public interface ISetCoderProperties
148 public interface IWriteCoderProperties
153 public interface ISetDecoderProperties
  /external/scapy/scapy/arch/bpf/
supersocket.py 67 # Assign the network interface to the BPF handle
74 # Set the interface into promiscuous
107 """Set the interface in promiscuous mode"""
112 raise Scapy_Exception("Cannot set promiscuous mode on interface "
123 """Guess the packet class that must be used on the interface"""
319 # Use the routing table to find the output interface
324 # Assign the network interface to the BPF handle

Completed in 2749 milliseconds

<<41424344454647484950>>