HomeSort by relevance Sort by last modified time
    Searched refs:CallbackType (Results 1 - 25 of 42) sorted by null

1 2

  /external/libchrome/base/
callback_list.h 74 template <typename CallbackType>
79 Subscription(CallbackListBase<CallbackType>* list,
80 typename std::list<CallbackType>::iterator iter)
96 CallbackListBase<CallbackType>* list_;
97 typename std::list<CallbackType>::iterator iter_;
105 std::unique_ptr<Subscription> Add(const CallbackType& cb) WARN_UNUSED_RESULT {
127 explicit Iterator(CallbackListBase<CallbackType>* list)
145 CallbackType* GetNext() {
149 CallbackType* cb = NULL;
158 CallbackListBase<CallbackType>* list_
    [all...]
bind.h 34 using CallbackType = OnceCallback<UnboundRunType>;
38 // PolymorphicInvoke, to which CallbackType will cast back.
39 using PolymorphicInvoke = typename CallbackType::PolymorphicInvoke;
43 return CallbackType(new BindState(
56 using CallbackType = RepeatingCallback<UnboundRunType>;
60 // PolymorphicInvoke, to which CallbackType will cast back.
61 using PolymorphicInvoke = typename CallbackType::PolymorphicInvoke;
65 return CallbackType(new BindState(
bind_unittest.cc 751 using CallbackType = RepeatingCallback<Signature>;
755 static CallbackType<MakeUnboundRunType<F, Args...>>
763 using CallbackType = OnceCallback<Signature>;
767 static CallbackType<MakeUnboundRunType<F, Args...>>
778 using CallbackType = typename TypeParam::template CallbackType<Signature>;
806 CallbackType<TypeParam, NoRef*()> normal_non_refcounted_cb =
857 CallbackType<TypeParam, int()> normal_cb = TypeParam::Bind(&IntFunc0);
858 CallbackType<TypeParam, int()> method_cb =
860 CallbackType<TypeParam, int()> const_method_nonconst_obj_cb
    [all...]
  /hardware/interfaces/wifi/1.2/default/
hidl_callback_util.h 30 template <typename CallbackType>
58 template <typename CallbackType>
64 : death_handler_(new HidlDeathHandler<CallbackType>(
69 bool addCallback(const sp<CallbackType>& cb) {
86 const std::set<android::sp<CallbackType>>& getCallbacks() {
92 CallbackType* cb = reinterpret_cast<CallbackType*>(cookie);
103 for (const sp<CallbackType>& cb : cb_set_) {
112 std::set<sp<CallbackType>> cb_set_;
113 sp<HidlDeathHandler<CallbackType>> death_handler_
    [all...]
  /device/google/cuttlefish_common/guest/commands/usbforward/
transport_request.h 32 // CallbackType describes what kind of function can receive call when this
38 using CallbackType = std::function<void(bool, const uint8_t*, int32_t)>;
41 CallbackType callback, const ControlTransfer& transfer);
43 CallbackType callback, const DataTransfer& transfer);
61 CallbackType callback_;
transport_request.cpp 24 CallbackType callback,
46 CallbackType callback,
  /external/libbrillo/brillo/dbus/
dbus_param_reader.h 54 template<typename CallbackType, typename... Args>
55 static bool Invoke(const CallbackType& handler,
59 return InvokeHelper<CurrentParam, CallbackType, Args...>(
73 template<typename ParamType, typename CallbackType, typename... Args>
75 InvokeHelper(const CallbackType& handler,
115 template<typename ParamType, typename CallbackType, typename... Args>
118 InvokeHelper(const CallbackType& handler,
146 template<typename CallbackType, typename... Args>
147 static bool Invoke(const CallbackType& handler,
  /system/tpm/tpm_manager/client/
binder_proxy_helper.h 25 using CallbackType = base::Callback<void(const ResponseProtobufType&)>;
33 const CallbackType& callback,
67 ResponseObserver(const CallbackType& callback,
86 CallbackType callback_;
91 CallbackType callback_;
tpm_ownership_dbus_proxy.h 64 typename CallbackType>
67 const CallbackType& callback);
tpm_nvram_dbus_proxy.h 71 typename CallbackType>
74 const CallbackType& callback);
tpm_ownership_dbus_proxy.cc 71 typename CallbackType>
74 const CallbackType& callback) {
tpm_nvram_dbus_proxy.cc 87 typename CallbackType>
90 const CallbackType& callback) {
  /device/google/wahoo/wifi_offload/
Offload.h 17 template<typename CallbackType>
32 void setCallback(android::wp<CallbackType> cb) {
37 android::wp<CallbackType> cb_;
  /hardware/qcom/camera/msm8998/QCamera2/HAL3/
QCamera3HdrPlusListenerThread.h 87 enum CallbackType {
117 std::queue<CallbackType> mPendingCallbacks;
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/AST/
ExternalASTMerger.h 163 template <typename CallbackType>
164 void ForEachMatchingDC(const DeclContext *DC, CallbackType Callback);
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/AST/
ExternalASTMerger.h 163 template <typename CallbackType>
164 void ForEachMatchingDC(const DeclContext *DC, CallbackType Callback);
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/AST/
ExternalASTMerger.h 163 template <typename CallbackType>
164 void ForEachMatchingDC(const DeclContext *DC, CallbackType Callback);
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/AST/
ExternalASTMerger.h 163 template <typename CallbackType>
164 void ForEachMatchingDC(const DeclContext *DC, CallbackType Callback);
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/AST/
ExternalASTMerger.h 163 template <typename CallbackType>
164 void ForEachMatchingDC(const DeclContext *DC, CallbackType Callback);
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/AST/
ExternalASTMerger.h 163 template <typename CallbackType>
164 void ForEachMatchingDC(const DeclContext *DC, CallbackType Callback);
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/AST/
ExternalASTMerger.h 163 template <typename CallbackType>
164 void ForEachMatchingDC(const DeclContext *DC, CallbackType Callback);
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/AST/
ExternalASTMerger.h 163 template <typename CallbackType>
164 void ForEachMatchingDC(const DeclContext *DC, CallbackType Callback);
  /external/wpa_supplicant_8/wpa_supplicant/hidl/1.0/
hidl_manager.cpp 61 template <class CallbackType>
63 const android::sp<CallbackType> &callback,
64 const std::function<void(const android::sp<CallbackType> &)>
66 std::vector<android::sp<CallbackType>> &callback_list)
69 auto death_notifier = new CallbackObjectDeathNotifier<CallbackType>(
121 template <class CallbackType>
123 const std::string &ifname, const android::sp<CallbackType> &callback,
124 const std::function<void(const android::sp<CallbackType> &)>
126 std::map<const std::string, std::vector<android::sp<CallbackType>>>
138 return registerForDeathAndAddCallbackHidlObjectToList<CallbackType>(
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/hidl/1.1/
hidl_manager.cpp 61 template <class CallbackType>
63 const android::sp<CallbackType> &callback,
64 const std::function<void(const android::sp<CallbackType> &)>
66 std::vector<android::sp<CallbackType>> &callback_list)
69 auto death_notifier = new CallbackObjectDeathNotifier<CallbackType>(
121 template <class CallbackType>
123 const std::string &ifname, const android::sp<CallbackType> &callback,
124 const std::function<void(const android::sp<CallbackType> &)>
126 std::map<const std::string, std::vector<android::sp<CallbackType>>>
138 return registerForDeathAndAddCallbackHidlObjectToList<CallbackType>(
    [all...]
  /system/bt/service/common/bluetooth/
scan_settings.h 51 enum CallbackType {

Completed in 583 milliseconds

1 2