/prebuilts/go/linux-x86/test/fixedbugs/ |
issue8028.go | 18 type I interface{}
|
issue8475.go | 17 var i interface{}
|
issue8761.go | 19 type C interface{}
|
issue9731.go | 9 func f(x interface{}) {
|
/prebuilts/go/linux-x86/test/interface/ |
convert.go | 7 // Test all the different interface conversion runtime functions. 11 type Stringer interface { 14 type StringLengther interface { 18 type Empty interface{}
|
/prebuilts/go/linux-x86/test/interface/private.dir/ |
private1.go | 9 type Exported interface {
|
/prebuilts/go/linux-x86/test/ |
parentype.go | 11 func f(interface{})
|
print.go | 14 println((interface{})(nil)) // printeface 15 println((interface { // printiface 35 defer println((interface{})(nil)) 36 defer println((interface {
|
/prebuilts/go/linux-x86/test/syntax/ |
typesw.go | 10 switch main() := interface{}(nil).(type) { // ERROR "invalid variable name"
|
/prebuilts/ndk/r16/sources/android/native_app_glue/ |
Android.mk | 10 # need to keep it around since it's the interface for JNI.
|
/system/bt/main/ |
stack_config.cc | 75 // Interface functions 113 const stack_config_t interface = { variable 119 const stack_config_t* stack_config_get_interface(void) { return &interface; }
|
/system/core/trusty/storage/proxy/ |
storage.h | 19 #include <trusty/interface/storage.h>
|
/system/libvintf/include/vintf/ |
MatrixHal.h | 57 // Loop over interface/instance for a specific VersionRange. 60 // Loop over interface/instance. VersionRange is supplied to the function as a vector. 72 // Return size of all interface/instance pairs. 74 void insertInstance(const std::string& interface, const std::string& instance, bool isRegex); 75 // Remove a specific interface/instances. Return true if removed, false otherwise. 76 bool removeInstance(const std::string& interface, const std::string& instance, bool isRegex); 77 // Remove all <interface> tags.
|
/test/vts/compilation_tools/vtsc/code_gen/profiler/ |
ProfilerCodeGenBase.cpp | 45 InterfaceSpecificationMessage interface = message.interface(); local 47 // defined types within the interface. 48 for (const auto attribute : interface.attribute()) { 64 out << "const char* interface,\n"; 92 InterfaceSpecificationMessage interface = message.interface(); local 94 // the interface. 95 for (const auto attribute : interface.attribute()) { 108 out << "const char* interface,\n" [all...] |
/prebuilts/go/darwin-x86/src/database/sql/ |
convert_test.go | 28 s, d interface{} // source and destination 41 wantiface interface{} 64 scaniface interface{} 167 {s: interface{}(nil), d: &scanptr, wantnil: true}, 170 // To interface{} 191 func intPtrValue(intptr interface{}) interface{} { 195 func intValue(intptr interface{}) int64 { 199 func uintValue(intptr interface{}) uint64 { 203 func float64Value(ptr interface{}) float64 [all...] |
/prebuilts/go/linux-x86/src/database/sql/ |
convert_test.go | 28 s, d interface{} // source and destination 41 wantiface interface{} 64 scaniface interface{} 167 {s: interface{}(nil), d: &scanptr, wantnil: true}, 170 // To interface{} 191 func intPtrValue(intptr interface{}) interface{} { 195 func intValue(intptr interface{}) int64 { 199 func uintValue(intptr interface{}) uint64 { 203 func float64Value(ptr interface{}) float64 [all...] |
/build/soong/android/ |
hooks.go | 22 // module types. Each hook takes an interface as a parameter so that new methods can be added 23 // to the interface without breaking existing module types. 28 type LoadHookContext interface { 31 AppendProperties(...interface{}) 32 PrependProperties(...interface{}) 33 CreateModule(blueprint.ModuleFactory, ...interface{}) 38 type ArchHookContext interface { 40 AppendProperties(...interface{}) 41 PrependProperties(...interface{}) 76 type InstallHookContext interface { [all...] |
/external/autotest/client/cros/ |
network.py | 97 Checks that routes for host go through a given interface. 103 network interface. 106 @param expected_interface: Expected interface name 108 a different interface than the expected one. 124 interface = route.interface 125 logging.info('interface for %s: %s', address, interface) 126 if interface != expected_interface: 127 raise error.TestFail('Target server %s uses interface %s [all...] |
/external/ltp/testcases/network/multicast/mc_member/ |
mc_member_test.c | 24 char *group_list = NULL, *interface = NULL; local 55 interface = optarg; 75 hp = gethostbyname(interface); 78 } else if (sscanf(interface, "%u.%u.%u.%u", &i1, &i2, &i3, &i4) != 4) { 93 printf("Socket set for Multicasting on: %s\n", interface); 137 printf("IPM group: %s added to interface: %s\n", group, 171 printf("IPM group: %s dropped from interface: %s\n",
|
/external/selinux/python/sepolgen/src/sepolgen/ |
interfaces.py | 36 Object representing a paramater for an interface. 115 The goal here is to figure out how interface paramaters are 116 actually used in the interface - e.g., that $1 is a domain used as 117 a SRC_TYPE. In general an interface will look like this: 119 interface(`foo', ` 126 interface(`foo_trans',` 196 # Assume interface arguments are source types. Fairly safe 243 def __init__(self, interface=None, attributes={}): 249 # The access that is enabled by this interface - eventually 256 if interface [all...] |
/prebuilts/go/darwin-x86/src/runtime/ |
iface_test.go | 12 type I1 interface { 16 type I2 interface { 47 e interface{} 48 e_ interface{} 186 e = i1.(interface{}) 214 e, ok = i1.(interface{}) 221 _, ok = i1.(interface{}) 228 e_, ok = e.(interface{}) 235 _, ok = e.(interface{}) 240 m := make(map[interface{}]bool [all...] |
/prebuilts/go/linux-x86/src/runtime/ |
iface_test.go | 12 type I1 interface { 16 type I2 interface { 47 e interface{} 48 e_ interface{} 186 e = i1.(interface{}) 214 e, ok = i1.(interface{}) 221 _, ok = i1.(interface{}) 228 e_, ok = e.(interface{}) 235 _, ok = e.(interface{}) 240 m := make(map[interface{}]bool [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/ |
interfaces.py | 36 Object representing a paramater for an interface. 115 The goal here is to figure out how interface paramaters are 116 actually used in the interface - e.g., that $1 is a domain used as 117 a SRC_TYPE. In general an interface will look like this: 119 interface(`foo', ` 126 interface(`foo_trans',` 196 # Assume interface arguments are source types. Fairly safe 243 def __init__(self, interface=None, attributes={}): 249 # The access that is enabled by this interface - eventually 256 if interface [all...] |
/system/tools/hidl/ |
generateCppAdapter.cpp | 22 #include "Interface.h" 59 generateMethods(out, [&](const Method* method, const Interface* /* interface */) { 109 generateMethods(out, [&](const Method* method, const Interface* /* interface */) { 138 const Interface* interface = static_cast<const Interface*>(type); 139 out << "static_cast<::android::sp<" << interface->fqName().cppName() << ">>(" 140 << interface->fqName().cppName() << "::castFrom( [all...] |
/test/vts/compilation_tools/vtsc/test/golden/PROFILER/ |
NfcClientCallback.profiler.cpp | 19 const char* interface, 33 if (strcmp(interface, "INfcClientCallback") != 0) { 34 LOG(WARNING) << "incorrect interface. Expect: INfcClientCallback actual: " << interface; 90 profiler.AddTraceEvent(event, package, version, interface, msg); 139 profiler.AddTraceEvent(event, package, version, interface, msg);
|