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

12 3 4

  /external/chromium_org/chromeos/dbus/
bluetooth_agent_manager_client.cc 34 dbus::MethodCall method_call(
55 dbus::MethodCall method_call(
77 dbus::MethodCall method_call(
bluetooth_agent_service_provider.cc 127 void Release(dbus::MethodCall* method_call,
139 void RequestPinCode(dbus::MethodCall* method_call,
164 void DisplayPinCode(dbus::MethodCall* method_call,
186 void RequestPasskey(dbus::MethodCall* method_call,
211 void DisplayPasskey(dbus::MethodCall* method_call,
237 dbus::MethodCall* method_call,
264 dbus::MethodCall* method_call,
289 void AuthorizeService(dbus::MethodCall* method_call,
315 void Cancel(dbus::MethodCall* method_call,
334 void OnPinCode(dbus::MethodCall* method_call
    [all...]
debug_daemon_client.cc 69 dbus::MethodCall method_call(debugd::kDebugdInterface,
83 dbus::MethodCall method_call(debugd::kDebugdInterface,
108 dbus::MethodCall method_call(debugd::kDebugdInterface,
120 dbus::MethodCall method_call(debugd::kDebugdInterface,
132 dbus::MethodCall method_call(debugd::kDebugdInterface,
144 dbus::MethodCall method_call(debugd::kDebugdInterface,
156 dbus::MethodCall method_call(debugd::kDebugdInterface,
170 dbus::MethodCall method_call(debugd::kDebugdInterface,
182 dbus::MethodCall method_call(debugd::kDebugdInterface,
194 dbus::MethodCall method_call(debugd::kDebugdInterface
    [all...]
nfc_property_set.cc 40 dbus::MethodCall method_call(
65 dbus::MethodCall method_call(
permission_broker_client.cc 30 dbus::MethodCall method_call(kPermissionBrokerInterface,
45 dbus::MethodCall method_call(kPermissionBrokerInterface, kRequestUsbAccess);
bluetooth_profile_service_provider.cc 87 void Release(dbus::MethodCall* method_call,
99 void NewConnection(dbus::MethodCall* method_call,
144 dbus::MethodCall* method_call,
168 void Cancel(dbus::MethodCall* method_call,
187 void OnConfirmation(dbus::MethodCall* method_call,
shill_ipconfig_client.cc 94 dbus::MethodCall method_call(shill::kFlimflamIPConfigInterface,
102 dbus::MethodCall method_call(shill::kFlimflamIPConfigInterface,
112 dbus::MethodCall method_call(shill::kFlimflamIPConfigInterface,
153 dbus::MethodCall method_call(shill::kFlimflamIPConfigInterface,
163 dbus::MethodCall method_call(shill::kFlimflamIPConfigInterface,
shill_profile_client.cc 100 dbus::MethodCall method_call(shill::kFlimflamProfileInterface,
111 dbus::MethodCall method_call(shill::kFlimflamProfileInterface,
124 dbus::MethodCall method_call(shill::kFlimflamProfileInterface,
blocking_method_caller_unittest.cc 93 dbus::Response* CreateMockProxyResponse(dbus::MethodCall* method_call,
120 dbus::MethodCall method_call("org.chromium.TestInterface", "Echo");
bluetooth_device_client.cc 122 dbus::MethodCall method_call(
147 dbus::MethodCall method_call(
172 dbus::MethodCall method_call(
202 dbus::MethodCall method_call(
229 dbus::MethodCall method_call(
255 dbus::MethodCall method_call(
279 dbus::MethodCall method_call(bluetooth_device::kBluetoothDeviceInterface,
304 dbus::MethodCall method_call(bluetooth_device::kBluetoothDeviceInterface,
bluetooth_gatt_manager_client.cc 35 dbus::MethodCall method_call(
63 dbus::MethodCall method_call(
  /art/test/003-omnibus-opcodes/src/
Main.java 49 MethodCall.run();
  /external/chromium_org/chrome/browser/chromeos/dbus/
liveness_service_provider.cc 39 dbus::MethodCall* method_call,
printer_service_provider_unittest.cc 37 dbus::MethodCall method_call(kLibCrosServiceInterface, kPrinterAdded);
screen_lock_service_provider.cc 44 dbus::MethodCall* method_call,
service_provider_test_helper.cc 64 AllOf(ResultOf(std::mem_fun(&dbus::MethodCall::GetInterface),
66 ResultOf(std::mem_fun(&dbus::MethodCall::GetMember),
103 dbus::MethodCall* method_call) {
121 dbus::MethodCall* method_call,
display_power_service_provider.cc 51 dbus::MethodCall* method_call,
74 dbus::MethodCall* method_call,
  /external/chromium_org/dbus/
mock_unittest.cc 87 Response* CreateMockProxyResponse(MethodCall* method_call,
108 MethodCall* method_call,
138 MethodCall method_call("org.chromium.TestInterface", "Echo");
167 MethodCall method_call("org.chromium.TestInterface", "Echo");
object_proxy.h 26 class MethodCall;
96 virtual scoped_ptr<Response> CallMethodAndBlock(MethodCall* method_call,
113 virtual void CallMethod(MethodCall* method_call,
132 virtual void CallMethodWithErrorCallback(MethodCall* method_call,
test_service.cc 289 void TestService::Echo(MethodCall* method_call,
304 void TestService::SlowEcho(MethodCall* method_call,
310 void TestService::AsyncEcho(MethodCall* method_call,
321 void TestService::BrokenMethod(MethodCall* method_call,
328 MethodCall* method_call,
345 void TestService::GetProperty(MethodCall* method_call,
432 void TestService::SetProperty(MethodCall* method_call,
464 MethodCall* method_call,
495 MethodCall* method_call,
502 MethodCall* method_call
    [all...]
  /frameworks/base/tools/aidl/
AST.cpp 288 MethodCall::MethodCall(const string& n)
295 MethodCall::MethodCall(const string& n, int argc = 0, ...)
306 MethodCall::MethodCall(Expression* o, const string& n)
313 MethodCall::MethodCall(Type* t, const string& n)
320 MethodCall::MethodCall(Expression* o, const string& n, int argc = 0, ...
    [all...]
AST.h 150 struct MethodCall : public Expression
158 MethodCall(const string& name);
159 MethodCall(const string& name, int argc, ...);
160 MethodCall(Expression* obj, const string& name);
161 MethodCall(Type* clazz, const string& name);
162 MethodCall(Expression* obj, const string& name, int argc, ...);
163 MethodCall(Type* clazz, const string& name, int argc, ...);
164 virtual ~MethodCall();
  /external/chromium_org/content/browser/
power_save_blocker_x11.cc 183 scoped_ptr<dbus::MethodCall> method_call;
195 new dbus::MethodCall(kGnomeAPIInterfaceName, "Inhibit"));
225 new dbus::MethodCall(kFreeDesktopAPIInterfaceName, "Inhibit"));
258 scoped_ptr<dbus::MethodCall> method_call;
269 new dbus::MethodCall(kGnomeAPIInterfaceName, "Uninhibit"));
276 new dbus::MethodCall(kFreeDesktopAPIInterfaceName, "UnInhibit"));
  /external/chromium_org/device/media_transfer_protocol/
media_transfer_protocol_daemon_client.cc 39 dbus::MethodCall method_call(mtpd::kMtpdInterface,
53 dbus::MethodCall method_call(mtpd::kMtpdInterface, mtpd::kGetStorageInfo);
70 dbus::MethodCall method_call(mtpd::kMtpdInterface, mtpd::kOpenStorage);
87 dbus::MethodCall method_call(mtpd::kMtpdInterface, mtpd::kCloseStorage);
104 dbus::MethodCall method_call(mtpd::kMtpdInterface,
123 dbus::MethodCall method_call(mtpd::kMtpdInterface,
145 dbus::MethodCall method_call(mtpd::kMtpdInterface,
168 dbus::MethodCall method_call(mtpd::kMtpdInterface,
188 dbus::MethodCall method_call(mtpd::kMtpdInterface,
206 dbus::MethodCall method_call(mtpd::kMtpdInterface, mtpd::kGetFileInfoById)
    [all...]
  /external/javassist/src/main/javassist/expr/
ExprEditor.java 45 * public void edit(MethodCall m) throws CannotCompileException {
58 * in <code>MethodCall</code>.
63 * @see MethodCall
190 expr = new MethodCall(pos, iterator, clazz, minfo);
191 edit((MethodCall)expr);
215 MethodCall mcall = new MethodCall(pos, iterator, clazz, minfo);
278 public void edit(MethodCall m) throws CannotCompileException {}

Completed in 949 milliseconds

12 3 4