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

1 2 3 4 5 6 7 8 91011>>

  /system/update_engine/common/
mock_hardware.h 34 .WillByDefault(testing::Invoke(&fake_,
37 .WillByDefault(testing::Invoke(&fake_,
40 .WillByDefault(testing::Invoke(&fake_,
43 .WillByDefault(testing::Invoke(&fake_,
46 .WillByDefault(testing::Invoke(&fake_,
49 .WillByDefault(testing::Invoke(&fake_,
52 .WillByDefault(testing::Invoke(&fake_,
55 .WillByDefault(testing::Invoke(&fake_,
58 .WillByDefault(testing::Invoke(&fake_,
61 .WillByDefault(testing::Invoke(&fake_
    [all...]
  /system/tpm/tpm_manager/server/
mock_openssl_crypto_util.cc 20 using testing::Invoke;
26 .WillByDefault(Invoke(this, &MockOpensslCryptoUtil::FakeGetRandomBytes));
mock_tpm_status.cc 20 using testing::Invoke;
40 .WillByDefault(Invoke(GetDefaultDictionaryAttackInfo));
mock_tpm_nvram.cc 22 using testing::Invoke;
27 .WillByDefault(Invoke(this, &MockTpmNvram::FakeDefineSpace));
29 .WillByDefault(Invoke(this, &MockTpmNvram::FakeDestroySpace));
31 .WillByDefault(Invoke(this, &MockTpmNvram::FakeWriteSpace));
33 .WillByDefault(Invoke(this, &MockTpmNvram::FakeReadSpace));
35 .WillByDefault(Invoke(this, &MockTpmNvram::FakeLockSpace));
37 .WillByDefault(Invoke(this, &MockTpmNvram::FakeListSpaces));
39 .WillByDefault(Invoke(this, &MockTpmNvram::FakeGetSpaceInfo));
  /system/tpm/attestation/common/
mock_crypto_utility.cc 20 using ::testing::Invoke;
41 ON_CALL(*this, GetRandom(_, _)).WillByDefault(Invoke(FakeRandom));
45 .WillByDefault(WithArgs<0, 3>(Invoke(CopyString)));
47 .WillByDefault(WithArgs<0, 2>(Invoke(CopyString)));
49 .WillByDefault(Invoke(CopyString));
mock_tpm_utility.cc 20 using ::testing::Invoke;
66 .WillByDefault(Invoke(TransformString("SealToPCR0")));
68 .WillByDefault(Invoke(UntransformString("SealToPCR0")));
70 .WillByDefault(WithArgs<1, 2>(Invoke(TransformString("Unbind"))));
72 .WillByDefault(WithArgs<1, 2>(Invoke(TransformString("Sign"))));
  /system/update_engine/
mock_p2p_manager.h 34 .WillByDefault(testing::Invoke(&fake_,
37 .WillByDefault(testing::Invoke(&fake_,
40 .WillByDefault(testing::Invoke(&fake_,
43 .WillByDefault(testing::Invoke(&fake_,
46 .WillByDefault(testing::Invoke(&fake_,
50 .WillByDefault(testing::Invoke(&fake_,
53 .WillByDefault(testing::Invoke(&fake_,
56 .WillByDefault(testing::Invoke(&fake_,
59 .WillByDefault(testing::Invoke(&fake_,
62 .WillByDefault(testing::Invoke(&fake_
    [all...]
mock_omaha_request_params.h 36 .WillByDefault(testing::Invoke(
39 .WillByDefault(testing::Invoke(
42 .WillByDefault(testing::Invoke(
45 .WillByDefault(testing::Invoke(
48 .WillByDefault(testing::Invoke(
  /system/libvintf/test/
utils-fake.h 23 using ::testing::Invoke;
34 ON_CALL(*this, fetch(_, _)).WillByDefault(Invoke(&real_, &FileFetcher::fetch));
46 ON_CALL(*this, mountSystem()).WillByDefault(Invoke([&] {
50 ON_CALL(*this, umountSystem()).WillByDefault(Invoke([&] {
54 ON_CALL(*this, mountVendor()).WillByDefault(Invoke([&] {
58 ON_CALL(*this, umountVendor()).WillByDefault(Invoke([&] {
  /external/webrtc/webrtc/modules/audio_coding/neteq/mock/
mock_external_decoder_pcm16b.h 24 using ::testing::Invoke;
55 .WillByDefault(Invoke(&real_, &ExternalPcm16B::DecodeInternal));
57 .WillByDefault(Invoke(&real_, &ExternalPcm16B::HasDecodePlc));
59 .WillByDefault(Invoke(&real_, &ExternalPcm16B::DecodePlc));
61 .WillByDefault(Invoke(&real_, &ExternalPcm16B::Reset));
63 .WillByDefault(Invoke(&real_, &ExternalPcm16B::IncomingPacket));
65 .WillByDefault(Invoke(&real_, &ExternalPcm16B::ErrorCode));
  /system/update_engine/update_manager/
mock_policy.h 37 .WillByDefault(testing::Invoke(
41 .WillByDefault(testing::Invoke(
45 .WillByDefault(testing::Invoke(
48 .WillByDefault(testing::Invoke(
52 .WillByDefault(testing::Invoke(
  /external/libbrillo/brillo/message_loops/
mock_message_loop.h 36 .WillByDefault(::testing::Invoke(
45 .WillByDefault(::testing::Invoke(
52 .WillByDefault(::testing::Invoke(&fake_loop_,
55 .WillByDefault(::testing::Invoke(&fake_loop_,
  /external/webrtc/talk/app/webrtc/
proxy.h 67 void Invoke(C* c, M m) { r_ = (c->*m)(); }
69 void Invoke(C* c, M m, T1 a1) { r_ = (c->*m)(a1); }
71 void Invoke(C* c, M m, T1 a1, T2 a2) { r_ = (c->*m)(a1, a2); }
73 void Invoke(C* c, M m, T1 a1, T2 a2, T3 a3) { r_ = (c->*m)(a1, a2, a3); }
76 void Invoke(C* c, M m, T1 a1, T2 a2, T3 a3, T4 a4) {
81 void Invoke(C* c, M m, T1 a1, T2 a2, T3 a3, T4 a4, T5 a5) {
95 void Invoke(C* c, M m) { (c->*m)(); }
97 void Invoke(C* c, M m, T1 a1) { (c->*m)(a1); }
99 void Invoke(C* c, M m, T1 a1, T2 a2) { (c->*m)(a1, a2); }
101 void Invoke(C* c, M m, T1 a1, T2 a2, T3 a3) { (c->*m)(a1, a2, a3);
    [all...]
mediacontroller.cc 48 worker_thread_->Invoke<void>(
53 worker_thread_->Invoke<void>(rtc::Bind(&MediaController::Destruct_w, this));
  /external/webrtc/talk/session/media/
channelmanager.cc 126 worker_thread_->Invoke<void>(Bind(
196 worker_thread_->Invoke<bool>(rtc::Bind(
200 initialized_ = worker_thread_->Invoke<bool>(Bind(
228 worker_thread_->Invoke<void>(Bind(&ChannelManager::Terminate_w, this));
256 return worker_thread_->Invoke<VoiceChannel*>(
289 worker_thread_->Invoke<void>(
314 return worker_thread_->Invoke<VideoChannel*>(
347 worker_thread_->Invoke<void>(
372 return worker_thread_->Invoke<DataChannel*>(
406 worker_thread_->Invoke<void>
    [all...]
  /external/libbrillo/brillo/dbus/
dbus_param_reader_unittest.cc 24 EXPECT_TRUE(DBusParamReader<false>::Invoke(callback, &reader, nullptr));
39 (DBusParamReader<false, int>::Invoke(callback, &reader, nullptr)));
59 EXPECT_TRUE((DBusParamReader<false, bool, int, VariantDictionary>::Invoke(
80 (DBusParamReader<false, bool, int>::Invoke(callback, &reader, &error)));
100 (DBusParamReader<false, bool, int>::Invoke(callback, &reader, &error)));
121 DBusParamReader<false, bool, double>::Invoke(callback, &reader, &error)));
137 (DBusParamReader<true, int*>::Invoke(callback, &reader, nullptr)));
153 DBusParamReader<true, int, double*>::Invoke(callback, &reader, nullptr)));
169 DBusParamReader<true, double*, int>::Invoke(callback, &reader, nullptr)));
203 bool*>::Invoke(callback, &reader, nullptr)))
    [all...]
dbus_param_reader.h 11 // arguments to the back to the next call to DBusInvoke::Invoke's arguments as
47 // DBusParamReader::Invoke() is a member function that actually extracts the
55 static bool Invoke(const CallbackType& handler,
100 // Call DBusParamReader::Invoke() to process the rest of parameters.
104 // all the parameters to the arguments of Invoke() and append the current
108 return DBusParamReader<allow_out_params, RestOfParams...>::Invoke(
128 // Call DBusParamReader::Invoke() to process the rest of parameters.
132 // all the parameters to the arguments of Invoke() and append the current
134 return DBusParamReader<allow_out_params, RestOfParams...>::Invoke(
147 static bool Invoke(const CallbackType& handler
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
TypeExtensions.cs 77 public static object invoke( this MethodInfo method, object obj, params object[] parameters ) method in class:Antlr.Runtime.JavaExtensions.TypeExtensions
79 return method.Invoke( obj, parameters );
97 return type.GetConstructor( new Type[0] ).Invoke( new object[0] );
  /external/google-breakpad/src/testing/test/
gmock-more-actions_test.cc 58 using testing::Invoke;
75 // Sample functions and functors for testing Invoke() and etc.
233 // Tests using Invoke() with a nullary function.
235 Action<int()> a = Invoke(Nullary); // NOLINT
239 // Tests using Invoke() with a unary function.
241 Action<bool(int)> a = Invoke(Unary); // NOLINT
246 // Tests using Invoke() with a binary function.
248 Action<const char*(const char*, short)> a = Invoke(Binary); // NOLINT
253 // Tests using Invoke() with a ternary function.
255 Action<int(int, char, short)> a = Invoke(Ternary); // NOLIN
    [all...]
  /external/googletest/googlemock/test/
gmock-more-actions_test.cc 58 using testing::Invoke;
75 // Sample functions and functors for testing Invoke() and etc.
233 // Tests using Invoke() with a nullary function.
235 Action<int()> a = Invoke(Nullary); // NOLINT
239 // Tests using Invoke() with a unary function.
241 Action<bool(int)> a = Invoke(Unary); // NOLINT
246 // Tests using Invoke() with a binary function.
248 Action<const char*(const char*, short)> a = Invoke(Binary); // NOLINT
253 // Tests using Invoke() with a ternary function.
255 Action<int(int, char, short)> a = Invoke(Ternary); // NOLIN
    [all...]
  /external/libese/esed/tests/
libese.h 27 using ::testing::Invoke;
41 return Invoke([response](const std::vector<uint8_t>& /* tx */, std::vector<uint8_t>& rx) {
  /external/v8/testing/gmock/test/
gmock-more-actions_test.cc 58 using testing::Invoke;
75 // Sample functions and functors for testing Invoke() and etc.
233 // Tests using Invoke() with a nullary function.
235 Action<int()> a = Invoke(Nullary); // NOLINT
239 // Tests using Invoke() with a unary function.
241 Action<bool(int)> a = Invoke(Unary); // NOLINT
246 // Tests using Invoke() with a binary function.
248 Action<const char*(const char*, short)> a = Invoke(Binary); // NOLINT
253 // Tests using Invoke() with a ternary function.
255 Action<int(int, char, short)> a = Invoke(Ternary); // NOLIN
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/
audio_processing_impl_unittest.cc 19 using ::testing::Invoke;
39 .WillByDefault(Invoke(&mock, &MockInitialize::RealInitializeLocked));
  /system/connectivity/wificond/tests/
scan_utils_unittest.cpp 35 using testing::Invoke;
130 WillOnce(Invoke(bind(
144 WillOnce(Invoke(bind(
155 WillOnce(Invoke(bind(
171 WillOnce(Invoke(bind(
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/
remote_estimator_proxy_unittest.cc 21 using ::testing::Invoke;
66 .WillOnce(Invoke([this](rtcp::TransportFeedback* packet) {
92 .WillOnce(Invoke([this](rtcp::TransportFeedback* packet) {
128 .WillOnce(Invoke([kTooLargeDelta, this](rtcp::TransportFeedback* packet) {
147 .WillOnce(Invoke([kTooLargeDelta, this](rtcp::TransportFeedback* packet) {
174 .WillOnce(Invoke([this](rtcp::TransportFeedback* packet) {
192 .WillOnce(Invoke([this](rtcp::TransportFeedback* packet) {
216 .WillOnce(Invoke([kTimeoutTimeMs, this](rtcp::TransportFeedback* packet) {
232 .WillOnce(Invoke([kTimeoutTimeMs, this](rtcp::TransportFeedback* packet) {
252 .WillOnce(Invoke([kTimeoutTimeMs, this](rtcp::TransportFeedback* packet)
    [all...]

Completed in 1495 milliseconds

1 2 3 4 5 6 7 8 91011>>