/external/chromium_org/dbus/ |
bus.h | 8 #include <dbus/dbus.h> 20 #include "dbus/dbus_export.h" 21 #include "dbus/object_path.h" 33 namespace dbus { namespace 68 // deal with the connection to dbus-daemon to be blocking. 80 // dbus::Bus::Options options; 83 // dbus::Bus bus(options); 85 // dbus::ObjectProxy* object_proxy = 88 // dbus::MethodCall method_call(interface_name, method_name) [all...] |
/external/chromium_org/chrome/browser/chromeos/login/ |
crash_restore_browsertest.cc | 15 #include "chromeos/dbus/cryptohome_client.h" 16 #include "chromeos/dbus/fake_dbus_thread_manager.h" 17 #include "chromeos/dbus/fake_session_manager_client.h" 18 #include "chromeos/dbus/session_manager_client.h" 21 #include "third_party/cros_system_api/dbus/service_constants.h" 47 // Redirect session_manager DBus calls to FakeSessionManagerClient.
|
/external/chromium_org/third_party/webrtc/ |
BUILD.gn | 64 pkg_config("dbus-glib") { 65 packages = [ "dbus-glib-1" ] 75 # TODO(kjellander): Investigate this, it seems like include <dbus/dbus.h> 77 # build/config/linux/pkg-config.py dbus-glib-1 returns correct include 79 all_dependent_configs = [ "dbus-glib" ]
|
/external/chromium_org/chromeos/dbus/ |
fake_power_manager_client.cc | 5 #include "chromeos/dbus/fake_power_manager_client.h" 8 #include "chromeos/dbus/power_manager/policy.pb.h" 22 void FakePowerManagerClient::Init(dbus::Bus* bus) {
|
bluetooth_gatt_manager_client.h | 12 #include "chromeos/dbus/dbus_client.h" 13 #include "dbus/object_path.h" 46 virtual void RegisterService(const dbus::ObjectPath& service_path, 53 virtual void UnregisterService(const dbus::ObjectPath& service_path,
|
bluetooth_profile_manager_client.h | 15 #include "chromeos/dbus/dbus_client.h" 16 #include "dbus/object_path.h" 84 virtual void RegisterProfile(const dbus::ObjectPath& profile_path, 92 virtual void UnregisterProfile(const dbus::ObjectPath& profile_path,
|
fake_power_manager_client.h | 12 #include "chromeos/dbus/power_manager/policy.pb.h" 13 #include "chromeos/dbus/power_manager/suspend.pb.h" 14 #include "chromeos/dbus/power_manager_client.h" 41 virtual void Init(dbus::Bus* bus) OVERRIDE;
|
mock_shill_manager_client.h | 9 #include "chromeos/dbus/shill_manager_client.h" 10 #include "chromeos/dbus/shill_property_changed_observer.h" 20 MOCK_METHOD1(Init, void(dbus::Bus* bus)); 45 void(const dbus::ObjectPath& profile_path,
|
shill_profile_client.h | 13 #include "chromeos/dbus/dbus_client.h" 14 #include "chromeos/dbus/shill_client_helper.h" 23 namespace dbus { namespace 27 } // namespace dbus 101 const dbus::ObjectPath& profile_path, 106 const dbus::ObjectPath& profile_path, 112 const dbus::ObjectPath& profile_path, 118 virtual void GetEntry(const dbus::ObjectPath& profile_path, 125 virtual void DeleteEntry(const dbus::ObjectPath& profile_path,
|
/external/libpcap/ |
pcap-dbus.c | 40 #include <dbus/dbus.h> 43 #include "pcap-dbus.h" 168 if (strcmp(dev, "dbus-system") == 0) { 175 } else if (strcmp(dev, "dbus-session") == 0) { 182 } else if (strncmp(dev, "dbus://", 7) == 0) { 219 * Monitor mode doesn't apply to dbus connections. 253 if (strcmp(device, "dbus-system") && 254 strcmp(device, "dbus-session") && 255 strncmp(device, "dbus://", 7) [all...] |
/external/wpa_supplicant_8/wpa_supplicant/dbus/ |
dbus_common.c | 12 #include <dbus/dbus.h> 43 * dispatch_initial_dbus_messages - Dispatch initial dbus messages after 217 * @data: dbus control interface private data 220 * dbus events that may have happened. 233 * integrate_with_eloop - Register our mainloop integration with dbus 235 * @priv: a dbus control interface data structure 247 wpa_printf(MSG_ERROR, "dbus: Failed to set callback " 268 wpa_printf(MSG_DEBUG, "dbus: bus disconnected, terminating"); 289 wpa_printf(MSG_ERROR, "dbus: Could not acquire the system [all...] |
/external/wpa_supplicant_8/wpa_supplicant/examples/p2p/ |
p2p_connect.py | 7 import dbus namespace 12 from dbus.mainloop.glib import DBusGMainLoop 27 print " -w = wpas dbus interface = fi.w1.wpa_supplicant1" 68 # Dbus Paths 100 self.bus = dbus.SystemBus() 104 self.wpas = dbus.Interface( 121 except dbus.DBusException, exc: 130 self.p2p_interface = dbus.Interface( 153 'peer':dbus.ObjectPath(self.path+'/Peers/'+self.addr)} 204 {'go_intent':dbus.Int32(self.go_intent)} [all...] |
p2p_group_add.py | 5 import dbus namespace 11 from dbus.mainloop.glib import DBusGMainLoop 24 print " -w = wpas dbus interface = fi.w1.wpa_supplicant1" 54 # Dbus Paths 90 self.bus = dbus.SystemBus() 94 self.wpas = dbus.Interface(self.wpas_object, 102 except dbus.DBusException, exc: 111 self.p2p_interface = dbus.Interface(self.interface_object, 200 # Dbus interface
|
p2p_listen.py | 7 import dbus namespace 13 from dbus.mainloop.glib import DBusGMainLoop 23 print " -w = wpas dbus interface = fi.w1.wpa_supplicant1" 43 # Dbus Paths 73 self.bus = dbus.SystemBus() 77 self.wpas = dbus.Interface(self.wpas_object, 85 except dbus.DBusException, exc: 94 self.p2p_interface = dbus.Interface(self.interface_object, 146 # Dbus interface
|
/external/chromium_org/ash/system/chromeos/network/ |
network_state_notifier_unittest.cc | 14 #include "chromeos/dbus/dbus_thread_manager.h" 15 #include "chromeos/dbus/shill_device_client.h" 16 #include "chromeos/dbus/shill_service_client.h" 19 #include "third_party/cros_system_api/dbus/service_constants.h"
|
/external/chromium_org/chrome/browser/chromeos/ |
prerender_condition_network.cc | 9 #include "third_party/cros_system_api/dbus/service_constants.h"
|
/external/chromium_org/chromeos/network/ |
host_resolver_impl_chromeos_unittest.cc | 11 #include "chromeos/dbus/dbus_thread_manager.h" 12 #include "chromeos/dbus/shill_device_client.h" 13 #include "chromeos/dbus/shill_ipconfig_client.h" 14 #include "chromeos/dbus/shill_service_client.h" 18 #include "dbus/object_path.h" 21 #include "third_party/cros_system_api/dbus/service_constants.h" 124 dbus::ObjectPath(default_device_path), 136 dbus::ObjectPath(path), 141 dbus::ObjectPath(path),
|
/external/chromium_org/content/shell/ |
DEPS | 5 "+chromeos/dbus",
|
/external/chromium_org/device/nfc/ |
nfc_peer_chromeos.cc | 12 #include "chromeos/dbus/dbus_thread_manager.h" 13 #include "chromeos/dbus/nfc_device_client.h" 15 #include "third_party/cros_system_api/dbus/service_constants.h" 24 typedef std::vector<dbus::ObjectPath> ObjectPathVector; 28 NfcPeerChromeOS::NfcPeerChromeOS(const dbus::ObjectPath& object_path) 109 void NfcPeerChromeOS::RecordAdded(const dbus::ObjectPath& object_path) { 117 void NfcPeerChromeOS::RecordRemoved(const dbus::ObjectPath& object_path) { 130 const dbus::ObjectPath& object_path) { 166 void NfcPeerChromeOS::AddRecord(const dbus::ObjectPath& object_path) {
|
/external/dnsmasq/src/ |
Android.mk | 6 LOCAL_SRC_FILES := bpf.c cache.c dbus.c dhcp.c dnsmasq.c forward.c helper.c lease.c log.c \
|
/external/valgrind/main/drd/scripts/ |
download-and-build-firefox | 17 if [ ! -e /usr/include/dbus-1.0/dbus/dbus-glib.h ]; then 18 echo "Please install the dbus-1-glib-devel package first."
|
/external/wpa_supplicant_8/wpa_supplicant/systemd/ |
wpa_supplicant-nl80211.service.arg.in | 6 # NetworkManager users will probably want the dbus version instead.
|
wpa_supplicant-wired.service.arg.in | 6 # NetworkManager users will probably want the dbus version instead.
|
wpa_supplicant.service.arg.in | 6 # NetworkManager users will probably want the dbus version instead.
|
/external/chromium_org/device/bluetooth/ |
bluetooth_gatt_chromeos_unittest.cc | 8 #include "chromeos/dbus/fake_bluetooth_adapter_client.h" 9 #include "chromeos/dbus/fake_bluetooth_agent_manager_client.h" 10 #include "chromeos/dbus/fake_bluetooth_device_client.h" 11 #include "chromeos/dbus/fake_bluetooth_gatt_characteristic_client.h" 12 #include "chromeos/dbus/fake_bluetooth_gatt_descriptor_client.h" 13 #include "chromeos/dbus/fake_bluetooth_gatt_service_client.h" 14 #include "chromeos/dbus/fake_bluetooth_input_client.h" 15 #include "chromeos/dbus/fake_dbus_thread_manager.h" 16 #include "dbus/object_path.h" 425 dbus::ObjectPath(FakeBluetoothAdapterClient::kAdapterPath) [all...] |