Searched refs:method_name (Results 51 - 75 of 108) sorted by relevance

12345

/external/chromium_org/chromeos/dbus/
H A Dpower_manager_client.cc339 void SimpleMethodCallToPowerManager(const std::string& method_name) { argument
341 method_name);
448 const std::string& method_name,
451 LOG(ERROR) << "Error calling " << method_name;
458 LOG(ERROR) << "Unable to parse reply from " << method_name;
595 const std::string& method_name,
599 power_manager::kPowerManagerInterface, method_name);
603 LOG(ERROR) << "Error constructing message for " << method_name;
661 std::string method_name;
664 method_name
447 HandleRegisterSuspendDelayReply(bool dark_suspend, const std::string& method_name, dbus::Response* response) argument
594 RegisterSuspendDelayImpl( const std::string& method_name, const power_manager::RegisterSuspendDelayRequest& protobuf_request, dbus::ObjectProxy::ResponseCallback callback) argument
[all...]
H A Dcryptohome_client.cc732 const char* method_name = cryptohome::kCryptohomeCheckKeyEx; variable
734 method_name);
752 const char* method_name = cryptohome::kCryptohomeMountEx; variable
754 method_name);
772 const char* method_name = cryptohome::kCryptohomeAddKeyEx; variable
774 method_name);
792 const char* method_name = cryptohome::kCryptohomeUpdateKeyEx; variable
794 method_name);
812 const char* method_name = cryptohome::kCryptohomeRemoveKeyEx; variable
813 dbus::MethodCall method_call(cryptohome::kCryptohomeInterface, method_name);
830 const char* method_name = cryptohome::kCryptohomeGetBootAttribute; variable
846 const char* method_name = cryptohome::kCryptohomeSetBootAttribute; variable
862 const char* method_name = cryptohome::kCryptohomeFlushAndSignBootAttributes; variable
[all...]
H A Dbluetooth_gatt_service_service_provider.cc222 const std::string& method_name,
225 << interface_name << "." << method_name; local
221 OnExported(const std::string& interface_name, const std::string& method_name, bool success) argument
H A Dbluetooth_profile_service_provider.cc180 const std::string& method_name,
183 << interface_name << "." << method_name; local
179 OnExported(const std::string& interface_name, const std::string& method_name, bool success) argument
/external/chromium_org/chrome/browser/chromeos/dbus/
H A Dservice_provider_test_helper.cc111 const std::string& method_name,
115 on_exported_callback.Run(interface_name, method_name, true);
109 MockExportMethod( const std::string& interface_name, const std::string& method_name, dbus::ExportedObject::MethodCallCallback method_callback, dbus::ExportedObject::OnExportedCallback on_exported_callback) argument
H A Dproxy_resolution_service_provider.cc215 const std::string& method_name,
219 << method_name; local
221 VLOG(1) << "Method exported: " << interface_name << "." << method_name; local
213 OnExported( const std::string& interface_name, const std::string& method_name, bool success) argument
/external/chromium_org/third_party/protobuf/python/google/protobuf/
H A Dservice_reflection.py218 def _NonImplementedMethod(self, method_name, rpc_controller, callback):
222 method_name: Name of the method being executed.
226 rpc_controller.SetFailed('Method %s not implemented.' % method_name)
/external/protobuf/python/google/protobuf/
H A Dservice_reflection.py218 def _NonImplementedMethod(self, method_name, rpc_controller, callback):
222 method_name: Name of the method being executed.
226 rpc_controller.SetFailed('Method %s not implemented.' % method_name)
/external/chromium_org/content/browser/android/java/
H A Dgin_java_method_invocation_helper_unittest.cc33 virtual const JavaMethod* FindMethod(const std::string& method_name,
187 virtual const JavaMethod* FindMethod(const std::string& method_name,
241 virtual const JavaMethod* FindMethod(const std::string& method_name,
287 virtual const JavaMethod* FindMethod(const std::string& method_name,
H A Dgin_java_bridge_dispatcher_host.cc418 const std::string& method_name,
423 *result = object->HasMethod(method_name);
431 const std::string& method_name,
448 method_name,
416 OnHasMethod( GinJavaBoundObject::ObjectID object_id, const std::string& method_name, bool* result) argument
429 OnInvokeMethod( GinJavaBoundObject::ObjectID object_id, const std::string& method_name, const base::ListValue& arguments, base::ListValue* wrapped_result, content::GinJavaBridgeError* error_code) argument
/external/chromium_org/ppapi/proxy/
H A Dppp_class_proxy.h79 SerializedVarReceiveInput method_name,
H A Dppb_var_deprecated_proxy.cc184 PP_Var method_name,
202 SerializedVarSendInput(dispatcher, method_name), argv_vect,
462 SerializedVarReceiveInput method_name,
471 method_name.Get(dispatcher()),
183 Call(PP_Var object, PP_Var method_name, uint32_t argc, PP_Var* argv, PP_Var* exception) argument
460 OnMsgCallDeprecated( SerializedVarReceiveInput object, SerializedVarReceiveInput method_name, SerializedVarVectorReceiveInput arg_vector, SerializedVarOutParam exception, SerializedVarReturnValue result) argument
H A Dppp_class_proxy.cc125 PP_Var method_name,
141 SerializedVarSendInput(obj->dispatcher, method_name), argv_vect,
344 SerializedVarReceiveInput method_name,
353 ToUserData(object), method_name.Get(dispatcher()),
124 Call(void* object, PP_Var method_name, uint32_t argc, PP_Var* argv, PP_Var* exception) argument
342 OnMsgCall( int64 ppp_class, int64 object, SerializedVarReceiveInput method_name, SerializedVarVectorReceiveInput arg_vector, SerializedVarOutParam exception, SerializedVarReturnValue result) argument
/external/chromium_org/extensions/renderer/
H A Dmodule_system.h88 // equivalent to calling require('module_name').method_name() from JS.
90 const std::string& method_name);
93 const std::string& method_name,
96 const std::string& method_name,
H A Dmodule_system.cc232 const std::string& method_name) {
236 CallModuleMethod(module_name, method_name, 0, &no_args));
241 const std::string& method_name,
244 module_name, method_name, args->size(), vector_as_array(args));
249 const std::string& method_name,
256 "method_name",
257 method_name);
271 "Failed to get module " + module_name + " to call " + method_name);
277 v8::String::NewFromUtf8(GetIsolate(), method_name.c_str()));
279 Fatal(context_, module_name + "." + method_name
230 CallModuleMethod( const std::string& module_name, const std::string& method_name) argument
239 CallModuleMethod( const std::string& module_name, const std::string& method_name, std::vector<v8::Handle<v8::Value> >* args) argument
247 CallModuleMethod( const std::string& module_name, const std::string& method_name, int argc, v8::Handle<v8::Value> argv[]) argument
[all...]
/external/chromium_org/ppapi/tests/
H A Dtest_instance_deprecated.cc35 pp::Var InstanceSO::Call(const pp::Var& method_name, argument
38 if (!method_name.is_string())
40 std::string name = method_name.AsString();
H A Dtest_var_deprecated.cc47 pp::Var VarScriptableObject::Call(const pp::Var& method_name, argument
50 if (!method_name.is_string())
52 std::string name = method_name.AsString();
/external/chromium_org/tools/telemetry/telemetry/page/
H A Dpage_test.py302 def _RunMethod(self, page, method_name, action_runner):
303 if hasattr(page, method_name):
304 run_method = getattr(page, method_name)
/external/chromium_org/third_party/protobuf/python/
H A Dmox.py278 def __getattr__(self, method_name):
287 method_name: str
293 return self._CreateMockMethod(method_name)
295 def _CreateMockMethod(self, method_name):
300 method_name: str
306 return MockMethod(method_name, self._expected_calls_queue,
519 def __init__(self, method_name, call_queue, replay_mode):
523 # method_name: the name of the method
528 method_name: str
533 self._name = method_name
[all...]
/external/protobuf/python/
H A Dmox.py278 def __getattr__(self, method_name):
287 method_name: str
293 return self._CreateMockMethod(method_name)
295 def _CreateMockMethod(self, method_name):
300 method_name: str
306 return MockMethod(method_name, self._expected_calls_queue,
519 def __init__(self, method_name, call_queue, replay_mode):
523 # method_name: the name of the method
528 method_name: str
533 self._name = method_name
[all...]
/external/chromium_org/build/android/pylib/instrumentation/
H A Dtest_jar.py166 for method_name, method_info in clazz_info['methods'].items():
167 if method_name.startswith('test'):
168 qualified_method = '%s#%s' % (clazz_name, method_name)
/external/chromium_org/base/android/linker/
H A Dlinker_jni.cc111 // |clazz|, with name |method_name| and signature |method_sig|.
116 const char* method_name,
119 *method_id = env->GetStaticMethodID(clazz, method_name, method_sig);
121 LOG_ERROR("Could not find ID for static method '%s'", method_name);
125 __FUNCTION__, *method_id, method_name);
114 InitStaticMethodId(JNIEnv* env, jclass clazz, const char* method_name, const char* method_sig, jmethodID* method_id) argument
/external/chromium_org/third_party/cython/src/Cython/Utility/
H A DOptimize.c241 static CYTHON_INLINE PyObject* __Pyx_dict_iterator(PyObject* dict, int is_dict, PyObject* method_name,
251 static CYTHON_INLINE PyObject* __Pyx_dict_iterator(PyObject* iterable, int is_dict, PyObject* method_name, argument
263 if (method_name) {
265 iterable = __Pyx_PyObject_CallMethod0(iterable, method_name);
/external/chromium_org/chrome/browser/
H A Dchrome_select_file_dialog_factory_win.cc28 bool CallMetroOPENFILENAMEMethod(const char* method_name, OPENFILENAME* ofn) { argument
35 ::GetProcAddress(metro_module, method_name));
/external/chromium_org/content/browser/indexed_db/
H A Dmock_browsertest_indexed_db_class_factory.cc18 const std::string& method_name,
21 method_name_(method_name),
17 FunctionTracer(const std::string& class_name, const std::string& method_name, int instance_num) argument

Completed in 5241 milliseconds

12345