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

12 3 4 5 6 7 8 91011>>

  /external/clang/test/PCH/
objc_stmts.h 3 @interface A
6 @interface B
9 @interface TestPCH
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug195.go 9 type I1 interface { I2 } // ERROR "interface"
12 type I3 interface { int } // ERROR "interface"
15 x interface{ S } // ERROR "interface"
17 type I4 interface { // GC_ERROR "invalid recursive type"
18 I4 // GCCGO_ERROR "interface"
21 type I5 interface {
22 I6 // GCCGO_ERROR "interface"
    [all...]
  /prebuilts/go/linux-x86/test/fixedbugs/
bug195.go 9 type I1 interface { I2 } // ERROR "interface"
12 type I3 interface { int } // ERROR "interface"
15 x interface{ S } // ERROR "interface"
17 type I4 interface { // GC_ERROR "invalid recursive type"
18 I4 // GCCGO_ERROR "interface"
21 type I5 interface {
22 I6 // GCCGO_ERROR "interface"
    [all...]
  /external/clang/test/ARCMT/whitelisted/
header2.h 2 @interface I2 : NSObject
  /external/clang/test/Modules/Inputs/
MethodPoolB.h 10 @interface B
category_bottom.h 3 @interface Foo(Bottom)
9 @interface LeftFoo(Bottom)
def.h 5 @interface A {
11 @interface Def
MethodPoolCombined1.h 3 @interface A
category_other.h 3 @interface Foo(Other)
category_top.h 1 @interface Foo
4 @interface Foo(Top)
8 @interface Foo(Top2)
12 @interface Foo(Top3)
typo.h 3 @interface NSString
  /external/clang/test/PCH/Inputs/
chain-selectors2.h 1 @interface Y
15 @interface X (Blarg)
chain-remap-types2.h 3 @interface X (Blah) {
  /external/clang/test/SemaObjCXX/Inputs/
arc-system-header.h 1 @interface B
5 @interface A {
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/
ARDAppEngineClient.h 13 @interface ARDAppEngineClient : NSObject <ARDRoomServerClient>
  /frameworks/av/services/audiopolicy/manager/
AudioPolicyFactory.cpp 27 extern "C" void destroyAudioPolicyManager(AudioPolicyInterface *interface)
29 delete interface;
  /system/bt/btcore/include/
hal_util.h 23 int hal_util_load_bt_library(const bt_interface_t** interface);
  /external/clang/test/ARCMT/
GC.h 2 @interface ExtInterface {
  /external/clang/test/Index/Inputs/
complete-pch.h 1 @interface A
6 @interface B
  /external/clang/test/Modules/Inputs/attr-unavailable/
oneB.h 3 @interface D
  /external/dhcpcd-6.8.2/
duid.h 33 size_t duid_init(const struct interface *);
ipv4ll.h 34 void ipv4ll_stop(struct interface *);
  /external/wpa_supplicant_8/hostapd/
ctrl_iface.h 2 * hostapd / UNIX domain socket -based control interface
15 int hostapd_global_ctrl_iface_init(struct hapd_interfaces *interface);
16 void hostapd_global_ctrl_iface_deinit(struct hapd_interfaces *interface);
28 hostapd_global_ctrl_iface_init(struct hapd_interfaces *interface)
34 hostapd_global_ctrl_iface_deinit(struct hapd_interfaces *interface)
  /system/netd/server/
ClatdController.h 32 int startClatd(char *interface);
33 int stopClatd(char* interface);
34 bool isClatdStarted(char* interface);
39 pid_t getClatdPid(char* interface);
LocalNetwork.cpp 37 int LocalNetwork::addInterface(const std::string& interface) {
38 if (hasInterface(interface)) {
41 if (int ret = RouteController::addInterfaceToLocalNetwork(mNetId, interface.c_str())) {
42 ALOGE("failed to add interface %s to local netId %u", interface.c_str(), mNetId);
45 mInterfaces.insert(interface);
49 int LocalNetwork::removeInterface(const std::string& interface) {
50 if (!hasInterface(interface)) {
53 if (int ret = RouteController::removeInterfaceFromLocalNetwork(mNetId, interface.c_str())) {
54 ALOGE("failed to remove interface %s from local netId %u", interface.c_str(), mNetId)
    [all...]

Completed in 423 milliseconds

12 3 4 5 6 7 8 91011>>