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

12 3 4 5 6 7 8 91011>>

  /external/webrtc/webrtc/base/
referencecountedsingletonfactory.h 21 template <typename Interface> class rcsf_ptr;
31 template <typename Interface>
33 friend class rcsf_ptr<Interface>;
48 scoped_ptr<Interface> instance_;
51 Interface* GetInstance() {
83 template <typename Interface>
88 explicit rcsf_ptr(ReferenceCountedSingletonFactory<Interface>* factory)
97 Interface& operator*() {
102 Interface* operator->() {
109 Interface* get()
    [all...]
  /external/v8/tools/clang/rewrite_to_chrome_style/tests/
gmock-expected.cc 9 class Interface {
14 class MockedInterface : public Interface {
gmock-original.cc 9 class Interface {
14 class MockedInterface : public Interface {
  /external/libmojo/mojo/public/cpp/bindings/
strong_binding.h 27 template <typename Interface>
30 template <typename Interface>
31 using StrongBindingPtr = base::WeakPtr<StrongBinding<Interface>>;
33 // This connects an interface implementation strongly to a pipe. When a
44 template <typename Interface>
50 static StrongBindingPtr<Interface> Create(
51 std::unique_ptr<Interface> impl,
52 InterfaceRequest<Interface> request) {
58 // Note: The error handler must not delete the interface implementation.
78 Interface* impl() { return impl_.get();
    [all...]
associated_interface_ptr.h 28 // Represents the client side of an associated interface. It is similar to
30 template <typename Interface>
33 using InterfaceType = Interface;
34 using PtrInfoType = AssociatedInterfacePtrInfo<Interface>;
51 // interface (if any) and returns the pointer to the unbound state.
59 // Sets up this object as the client side of an associated interface.
69 // another interface before using this object to make calls. Please see the
70 // comments of MakeRequest(AssociatedInterfacePtr<Interface>*) for more
72 void Bind(AssociatedInterfacePtrInfo<Interface> info,
83 Interface* get() const { return internal_state_.instance();
    [all...]
interface_ptr.h 25 // A pointer to a local proxy of a remote Interface implementation. Uses a
28 // bound to a message pipe before the interface methods can be called.
38 template <typename Interface>
41 using InterfaceType = Interface;
42 using PtrInfoType = InterfacePtrInfo<Interface>;
71 // Binds the InterfacePtr to a remote implementation of Interface.
81 void Bind(InterfacePtrInfo<Interface> info,
94 Interface* get() const { return internal_state_.instance(); }
96 // Functions like a pointer to Interface. Must already be bound.
97 Interface* operator->() const { return get();
    [all...]
associated_binding.h 44 // Closes the associated interface. Puts this object into a state where it can
81 // Represents the implementation side of an associated interface. It is similar
91 template <typename Interface,
92 typename ImplRefTraits = RawPtrImplRefTraits<Interface>>
104 // should be sent by another interface. |impl| must outlive this object.
106 AssociatedInterfacePtrInfo<Interface>* ptr_info,
116 AssociatedInterfaceRequest<Interface> request,
127 // interface.
128 void Bind(AssociatedInterfacePtrInfo<Interface>* ptr_info,
132 ptr_info->set_version(Interface::Version_)
    [all...]
interface_request.h 22 // Represents a request from a remote client for an implementation of Interface
23 // over a specified message pipe. The implementor of the interface should
28 template <typename Interface>
32 // requesting an implementation of Interface.
36 // Creates a new message pipe over which Interface is to be served, binding
40 explicit InterfaceRequest(InterfacePtr<Interface>* ptr,
44 ptr->Bind(InterfacePtrInfo<Interface>(std::move(pipe.handle0), 0u),
65 // Binds the request to a message pipe over which Interface is to be
108 template <typename Interface>
109 InterfaceRequest<Interface> MakeRequest(ScopedMessagePipeHandle handle)
    [all...]
interface_ptr_set.h 23 template <typename Interface, template <typename> class Ptr>
29 void AddPtr(Ptr<Interface> ptr) {
55 explicit Element(Ptr<Interface> ptr)
65 // Resetting the interface ptr means that it won't call this object back
70 Interface* get() { return ptr_.get(); }
79 Ptr<Interface> ptr_;
98 template <typename Interface>
99 using InterfacePtrSet = internal::PtrSet<Interface, InterfacePtr>;
101 template <typename Interface>
103 internal::PtrSet<Interface, AssociatedInterfacePtr>
    [all...]
  /system/libhidl/transport/include/hidl/
LegacySupport.h 32 template<class Interface>
36 sp<Interface> service = Interface::getService(name, true /* getStub */);
40 Interface::descriptor, name.c_str());
45 Interface::descriptor, name.c_str());
51 Interface::descriptor, name.c_str());
54 Interface::descriptor, name.c_str(), status);
65 template<class Interface>
70 status_t result = registerPassthroughServiceImplementation<Interface>(name);
79 template<class Interface>
    [all...]
  /external/eigen/bench/btl/generic_bench/static/
static_size_generator.hh 28 template <int SIZE,template<class> class Perf_Analyzer, template<class> class Action, template<class,int> class Interface>
34 Perf_Analyzer<Action<Interface<REAL_TYPE,SIZE> > > perf_action;
37 static_size_generator<SIZE-1,Perf_Analyzer,Action,Interface>::go(tab_sizes,tab_mflops);
43 template <template<class> class Perf_Analyzer, template<class> class Action, template<class,int> class Interface>
44 struct static_size_generator<1,Perf_Analyzer,Action,Interface>{
48 Perf_Analyzer<Action<Interface<REAL_TYPE,1> > > perf_action;
  /art/test/676-proxy-jit-at-first-use/src/
Main.java 23 Interface i = (Interface) Proxy.newProxyInstance(Main.class.getClassLoader(),
24 new Class<?>[] { Interface.class },
30 interface Interface {
  /build/make/tools/droiddoc/test/stubs/src/com/android/stubs/
InterfaceEnum.java 19 public enum InterfaceEnum implements Parent.Interface {
  /external/autotest/client/cros/
debugd_util.py 9 """Returns the interface object for debugd."""
12 return dbus.Interface(proxy, dbus_interface='org.chromium.debugd')
  /external/dhcpcd-6.8.2/dbus/test/
introspection 7 object = dbus.Interface(bus.get_object("org.chromium.dhcpcd", '/'),
  /system/bt/btif/include/
btif_hf.h 27 * Get an instance of the headset interface from the loaded shared library
29 * @return an instance of the headset interface
31 Interface* GetInterface();
  /external/libmojo/mojo/public/cpp/bindings/lib/
binding_state.h 89 template <typename Interface, typename ImplRefTraits>
103 std::move(handle), runner, Interface::Name_,
104 base::MakeUnique<typename Interface::RequestValidator_>(),
105 Interface::PassesAssociatedKinds_, Interface::HasSyncMethods_, &stub_,
106 Interface::Version_);
109 InterfaceRequest<Interface> Unbind() {
111 InterfaceRequest<Interface> request =
112 MakeRequest<Interface>(router_->PassMessagePipe());
117 Interface* impl() { return ImplRefTraits::GetRawPointer(&stub_.sink());
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
Ip4If.c 2 Implement IP4 pesudo interface.
134 @param[in] Interface The interface to send out to.
148 IN IP4_INTERFACE *Interface,
171 Token->Interface = Interface;
177 CopyMem (&Token->SrcMac, &Interface->Mac, sizeof (Token->SrcMac));
235 @param[in] Interface The interface to send ARP from.
244 IN IP4_INTERFACE *Interface,
    [all...]
  /art/test/430-live-register-slow-path/src/
Main.java 30 doCall(o instanceof Interface[], o);
38 static interface Interface {}
  /device/generic/goldfish/wifi/ipv6proxy/
proxy.h 21 #include "interface.h"
57 void handleInnerMessage(const Interface& inner, Message& message);
58 void forward(const Interface& from, Interface& to,
61 std::vector<Interface> mInnerIfs;
62 Interface mOuterIf;
  /device/generic/goldfish/wifi/wifi_hal/
interface.cpp 17 #include "interface.h"
52 Interface::Interface(Netlink& netlink, const char* name)
58 Interface::Interface(Interface&& other)
64 bool Interface::init() {
67 ALOGE("Unable to get interface index for %s", mName.c_str());
73 wifi_error Interface::getSupportedFeatureSet(feature_set* set) {
81 wifi_error Interface::getName(char* name, size_t size)
    [all...]
interface.h 27 class Interface {
29 Interface(Netlink& netlink, const char* name);
30 Interface(Interface&& other);
75 Interface(const Interface&) = delete;
76 Interface& operator=(const Interface&) = delete;
  /system/tools/hidl/
Interface.cpp 17 #include "Interface.h"
49 * interface between them will be destroyed, and the device will not
71 Interface::Interface(const char* localName, const FQName& fullName, const Location& location,
75 std::string Interface::typeName() const {
76 return "interface " + localName();
79 const Hash* Interface::getFileHash() const {
83 bool Interface::fillPingMethod(Method *method) const {
114 bool Interface::fillLinkToDeathMethod(Method *method) const {
158 bool Interface::fillUnlinkToDeathMethod(Method *method) const
    [all...]
  /build/make/tools/droiddoc/test/stubs/expected/com/android/stubs/
InterfaceEnum.java 3 implements com.android.stubs.Parent.Interface
  /device/linaro/bootloader/edk2/DuetPkg/DxeIpl/
PpisNeededByDxeCore.c 54 Hob->SerialStatusCode.Interface = (EFI_PHYSICAL_ADDRESS) (UINTN) ReportStatusCode;

Completed in 1034 milliseconds

12 3 4 5 6 7 8 91011>>