/system/libhidl/transport/ |
HidlTransportUtils.cpp | 27 Return<bool> canCastInterface(IBase* interface, const char* castTo, bool emitError) { 28 if (interface == nullptr) { 33 // Every HIDL interface is a base interface. 39 auto chainRet = interface->interfaceChain([&](const hidl_vec<hidl_string> &types) { 58 std::string getDescriptor(IBase* interface) { 60 auto ret = interface->interfaceDescriptor([&](const hidl_string &types) {
|
/device/google/cuttlefish_common/common/libs/net/ |
network_interface_manager.cpp | 33 const NetworkInterface& interface) { 35 request.AddIfInfo(interface.Index(), interface.IsOperational()); 36 if (!interface.Name().empty()) { 37 request.AddString(IFLA_IFNAME, interface.Name()); 44 const NetworkInterface& interface) { 46 request.AddAddrInfo(interface.Index(), interface.PrefixLength()); 47 in_addr_t address{inet_addr(interface.Address().c_str())}; 51 inet_addr(interface.BroadcastAddress().c_str())) [all...] |
/external/curl/docs/cmdline-opts/ |
interface.d | 1 Long: interface 3 Help: Use network INTERFACE (or address) 4 See-also: dns-interface 7 Perform an operation using a specified interface. You can enter interface 10 curl --interface eth0:1 https://www.example.com/
|
/external/dhcpcd-6.8.2/ |
ipv6nd.h | 46 struct interface *iface; 94 void ipv6nd_startrs(struct interface *); 95 ssize_t ipv6nd_env(char **, const char *, const struct interface *); 101 ssize_t ipv6nd_free(struct interface *); 103 int ipv6nd_hasra(const struct interface *); 104 int ipv6nd_hasradhcp(const struct interface *); 105 void ipv6nd_runignoredra(struct interface *); 108 int ipv6nd_dadcompleted(const struct interface *); 109 void ipv6nd_expire(struct interface *, uint32_t); 110 void ipv6nd_drop(struct interface *); [all...] |
if-sun.c | 44 if_init(__unused struct interface *iface) 51 if_conf(__unused struct interface *iface) 82 if_openrawsocket(struct interface *ifp, int protocol) 90 if_sendrawpacket(const struct interface *ifp, int protocol, 99 if_readrawpacket(struct interface *ifp, int protocol, 108 if_address(const struct interface *iface, const struct in_addr *address, 146 if_addrflags6(const struct in6_addr *addr, const struct interface *ifp)
|
ipv4.h | 43 const struct interface *iface; 57 struct interface *iface; 74 int ipv4_ifcmp(const struct interface *, const struct interface *); 84 void ipv4_finaliseaddr(struct interface *); 85 int ipv4_deladdr(struct interface *ifp, const struct in_addr *, 91 struct ipv4_addr *ipv4_iffindaddr(struct interface *, 93 struct ipv4_addr *ipv4_iffindlladdr(struct interface *); 101 void ipv4_free(struct interface *);
|
/prebuilts/go/darwin-x86/test/interface/embed1.dir/ |
embed1.go | 5 // Test that embedded interface types can have local methods. 14 type I interface { m() } 15 type J interface { I } 17 type PI interface { p.I } 18 type PJ interface { p.J }
|
/prebuilts/go/linux-x86/test/interface/embed1.dir/ |
embed1.go | 5 // Test that embedded interface types can have local methods. 14 type I interface { m() } 15 type J interface { I } 17 type PI interface { p.I } 18 type PJ interface { p.J }
|
/prebuilts/go/darwin-x86/test/fixedbugs/issue10700.dir/ |
test.go | 11 type Imported interface { 24 x.Do() // ERROR "x\.Do undefined \(type \*Imported is pointer to interface, not interface\)" 25 x.do() // ERROR "x\.do undefined \(type \*Imported is pointer to interface, not interface\)" 27 x.Dont() // ERROR "x\.Dont undefined \(type \*Imported is pointer to interface, not interface\)" 37 z.Do() // ERROR "z\.Do undefined \(type \*other\.Exported is pointer to interface, not interface\)" 38 z.do() // ERROR "z\.do undefined \(type \*other\.Exported is pointer to interface, not interface\) [all...] |
/prebuilts/go/darwin-x86/test/interface/ |
assertinline.go | 9 func assertptr(x interface{}) *int { 13 func assertptr2(x interface{}) (*int, bool) { 18 func assertfunc(x interface{}) func() { 22 func assertfunc2(x interface{}) (func(), bool) { 27 func assertstruct(x interface{}) struct{ *int } { 31 func assertstruct2(x interface{}) (struct{ *int }, bool) { 36 func assertbig(x interface{}) complex128 { 40 func assertbig2(x interface{}) (complex128, bool) { 45 func assertbig2ok(x interface{}) (complex128, bool) { 50 func assertslice(x interface{}) []int [all...] |
embed2.go | 7 // Test methods derived from embedded interface and *interface values. 15 type Inter interface { 33 type SP struct{ *Inter } // ERROR "interface" 51 check("pti.M()", pti.M()) // ERROR "pointer to interface, not interface" 57 check("i = t; pi.M()", pi.M()) // ERROR "pointer to interface, not interface" 61 check("i = pt; pi.M()", pi.M()) // ERROR "pointer to interface, not interface" [all...] |
/prebuilts/go/linux-x86/test/fixedbugs/issue10700.dir/ |
test.go | 11 type Imported interface { 24 x.Do() // ERROR "x\.Do undefined \(type \*Imported is pointer to interface, not interface\)" 25 x.do() // ERROR "x\.do undefined \(type \*Imported is pointer to interface, not interface\)" 27 x.Dont() // ERROR "x\.Dont undefined \(type \*Imported is pointer to interface, not interface\)" 37 z.Do() // ERROR "z\.Do undefined \(type \*other\.Exported is pointer to interface, not interface\)" 38 z.do() // ERROR "z\.do undefined \(type \*other\.Exported is pointer to interface, not interface\) [all...] |
/prebuilts/go/linux-x86/test/interface/ |
assertinline.go | 9 func assertptr(x interface{}) *int { 13 func assertptr2(x interface{}) (*int, bool) { 18 func assertfunc(x interface{}) func() { 22 func assertfunc2(x interface{}) (func(), bool) { 27 func assertstruct(x interface{}) struct{ *int } { 31 func assertstruct2(x interface{}) (struct{ *int }, bool) { 36 func assertbig(x interface{}) complex128 { 40 func assertbig2(x interface{}) (complex128, bool) { 45 func assertbig2ok(x interface{}) (complex128, bool) { 50 func assertslice(x interface{}) []int [all...] |
embed2.go | 7 // Test methods derived from embedded interface and *interface values. 15 type Inter interface { 33 type SP struct{ *Inter } // ERROR "interface" 51 check("pti.M()", pti.M()) // ERROR "pointer to interface, not interface" 57 check("i = t; pi.M()", pi.M()) // ERROR "pointer to interface, not interface" 61 check("i = pt; pi.M()", pi.M()) // ERROR "pointer to interface, not interface" [all...] |
/system/core/libunwindstack/tools/ |
unwind_info.cpp | 40 void DumpArm(ElfInterfaceArm* interface) { 41 if (interface == nullptr) { 47 for (const auto& entry : interface->pt_loads()) { 51 for (auto addr : *interface) { 56 if (interface->GetFunctionName(pc, load_bias, &name, &func_offset) && !name.empty()) { 61 if (!interface->FindEntry(pc, &entry)) { 65 ArmExidx arm(nullptr, interface->memory(), nullptr); 85 void DumpDwarfSection(ElfInterface* interface, DwarfSection* section, uint64_t load_bias) { 95 if (interface->GetFunctionName(fde->pc_start, load_bias, &name, &func_offset) && !name.empty()) { 127 ElfInterface* interface = elf.interface() local [all...] |
/prebuilts/go/darwin-x86/test/ |
const.go | 128 nilN interface{} 132 _ = nil == interface{}(nil) 133 _ = interface{}(nil) == nil 135 ii := func(i1 interface{}, i2 interface{}) bool { return i1 == i2 } 136 ni := func(n interface{}, i int) bool { return n == i } 137 in := func(i int, n interface{}) bool { return i == n } 138 pi := func(p *int, i interface{}) bool { return p == i } 139 ip := func(i interface{}, p *int) bool { return i == p } 141 assert((interface{}(nil) == interface{}(nil)) == ii(nilN, nilN) [all...] |
convT2X.go | 7 // Test conversion from non-interface types to the empty interface. 11 type J interface { 61 iu16 interface{} = u16 62 iu32 interface{} = u32 63 iu64 interface{} = u64 64 iu128 interface{} = u128 65 if32 interface{} = f32 66 if64 interface{} = f64 67 ic128 interface{} = c12 [all...] |
/prebuilts/go/linux-x86/test/ |
const.go | 128 nilN interface{} 132 _ = nil == interface{}(nil) 133 _ = interface{}(nil) == nil 135 ii := func(i1 interface{}, i2 interface{}) bool { return i1 == i2 } 136 ni := func(n interface{}, i int) bool { return n == i } 137 in := func(i int, n interface{}) bool { return i == n } 138 pi := func(p *int, i interface{}) bool { return p == i } 139 ip := func(i interface{}, p *int) bool { return i == p } 141 assert((interface{}(nil) == interface{}(nil)) == ii(nilN, nilN) [all...] |
convT2X.go | 7 // Test conversion from non-interface types to the empty interface. 11 type J interface { 61 iu16 interface{} = u16 62 iu32 interface{} = u32 63 iu64 interface{} = u64 64 iu128 interface{} = u128 65 if32 interface{} = f32 66 if64 interface{} = f64 67 ic128 interface{} = c12 [all...] |
/external/clang/test/Modules/Inputs/ |
DebugObjC.h | 4 @interface ObjCClass { 13 @interface ObjCClassWithPrivateIVars { 18 @interface ObjCClass (Category)
|
/external/walt/ios/WALT/ |
MIDIEndpoint.h | 21 @interface MIDIEndpoint : NSObject 27 @interface MIDIDestination : MIDIEndpoint 32 @interface MIDISource : MIDIEndpoint
|
/external/webrtc/talk/app/webrtc/objc/ |
RTCDataChannel+Internal.h | 33 @interface RTCDataBuffer (Internal) 41 @interface RTCDataChannelInit (Internal) 47 @interface RTCDataChannel (Internal)
|
/system/netd/server/ |
Network.h | 39 // clearInterfaces(), before deleting it. This is because interface removal may fail. If we 46 bool hasInterface(const std::string& interface) const; 50 virtual int addInterface(const std::string& interface) WARN_UNUSED_RESULT = 0; 51 virtual int removeInterface(const std::string& interface) WARN_UNUSED_RESULT = 0;
|
/external/mesa3d/src/gallium/drivers/ilo/core/ |
ilo_state_compute.c | 51 * that interface entries and CURBE data must be in ROB. And that ROB 70 * "The first 32 URB entries are reserved for the interface 75 * "The first 64 URB entries are reserved for the interface 144 const struct ilo_state_compute_interface_info *interface) 146 const int per_thread_read = (interface->curbe_read_length + 31) / 32; 148 (interface->cross_thread_curbe_read_length + 31) / 32; 152 assert(interface->curbe_read_offset % 32 == 0); 172 return interface->curbe_read_offset / 32 + cross_thread_read + 173 per_thread_read * interface->thread_group_size; 330 const struct ilo_state_compute_interface_info *interface) 372 const struct ilo_state_compute_interface_info *interface = local [all...] |
/external/android-clat/ |
setif.h | 16 * setif.h - network interface configuration 24 int add_anycast_address(int sock, const struct in6_addr *addr, const char *interface);
|