|   /system/bt/service/ipc/dbus/ | 
| bluetooth_adapter.cc  | 17 #include "service/ipc/dbus/bluetooth_adapter.h" 38 // TODO(jpawlowski): right now xml interface files are in service/ipc/dbus/ 46 namespace ipc {  namespace  106 }  // namespace ipc
  | 
| ipc_handler_dbus.cc  | 17 #include "service/ipc/dbus/ipc_handler_dbus.h" 23 #include "service/ipc/dbus/bluetooth_adapter.h" 27 namespace ipc {  namespace  59   ipc::dbus::BluetoothAdapter* bluetooth_adapter = 60       new ipc::dbus::BluetoothAdapter(bus_, adapter()); 67 }  // namespace ipc
  | 
|   /system/bt/service/ipc/ | 
| ipc_handler_linux.h  | 26 #include "service/ipc/ipc_handler.h" 27 #include "service/ipc/ipc_manager.h" 33 namespace ipc {  namespace  51   // Stops the IPC thread. This helper is needed since base::Thread requires 62 // True, if the IPC mechanism is running. 89 }  // namespace ipc
  | 
| ipc_manager.h  | 28 namespace ipc {  namespace  32 // IPCManager is a class for initializing and running supported IPC mechanisms. 33 // It manages the life-time of different IPC flavors that are available on the 38   // Possible IPC types. 40     TYPE_LINUX,   // IPC based on a Linux sequential packet domain socket 41     TYPE_BINDER,  // IPC based on the Binder 42     TYPE_DBUS     // IPC based on the DBus 45   // Interface for observing events from an IPC mechanism. These methods will be 46   // called on the thread that started the particular IPC type. 52     // Called when an IPC mechanism has successfully started and is ready fo     [all...] | 
| ipc_handler_linux.cc  | 17 #include "service/ipc/ipc_handler_linux.h" 26 #include "service/ipc/linux_ipc_host.h" 29 namespace ipc {  namespace  81       LOG(ERROR) << "Failed to open domain socket for IPC"; 92       LOG(ERROR) << "Failed to bind IPC socket to address: " << strerror(errno); 207 }  // namespace ipc
  | 
|   /external/perfetto/include/perfetto/ipc/ | 
| async_result.h  | 24 #include "perfetto/ipc/basic_types.h" 27 namespace ipc {  namespace in namespace:perfetto  71 }  // namespace ipc
  | 
|   /frameworks/av/media/libmediametrics/ | 
| IMediaAnalyticsService.cpp  | 121     IPCThreadState *ipc = IPCThreadState::self();  local  122     int clientPid = ipc->getCallingPid();
  | 
|   /frameworks/native/services/vr/virtual_touchpad/ | 
| VirtualTouchpadService.cpp  | 103   const android::IPCThreadState* ipc = android::IPCThreadState::self();  local  104   const pid_t pid = ipc->getCallingPid(); 105   const uid_t uid = ipc->getCallingUid(); 133   const android::IPCThreadState* ipc = android::IPCThreadState::self();  local  134   *out_pid = ipc->getCallingPid(); 135   const uid_t uid = ipc->getCallingUid();
  | 
|   /hardware/qcom/display/msm8084/libqservice/ | 
| IQService.cpp  | 88     // IPC should be from certain processes only 89     IPCThreadState* ipc = IPCThreadState::self();  local  90     const int callerPid = ipc->getCallingPid(); 91     const int callerUid = ipc->getCallingUid();
  | 
|   /hardware/qcom/display/msm8226/libqservice/ | 
| IQService.cpp  | 79     // IPC should be from certain processes only 80     IPCThreadState* ipc = IPCThreadState::self();  local  81     const int callerPid = ipc->getCallingPid(); 82     const int callerUid = ipc->getCallingUid();
  | 
|   /hardware/qcom/display/msm8994/libqservice/ | 
| IQService.cpp  | 79     // IPC should be from certain processes only 80     IPCThreadState* ipc = IPCThreadState::self();  local  81     const int callerPid = ipc->getCallingPid(); 82     const int callerUid = ipc->getCallingUid();
  | 
|   /system/bt/service/ipc/binder/ | 
| interface_with_instances_base.cc  | 17 #include "service/ipc/binder/interface_with_instances_base.h" 21 namespace ipc {  namespace  153 }  // namespace ipc
  | 
| remote_callback_list.h  | 28 namespace ipc {  namespace  205 }  // namespace ipc
  | 
| bluetooth_binder_server.cc  | 17 #include "service/ipc/binder/bluetooth_binder_server.h" 21 #include "service/ipc/binder/bluetooth_gatt_client_binder_server.h" 22 #include "service/ipc/binder/bluetooth_gatt_server_binder_server.h" 23 #include "service/ipc/binder/bluetooth_le_advertiser_binder_server.h" 24 #include "service/ipc/binder/bluetooth_le_scanner_binder_server.h" 25 #include "service/ipc/binder/bluetooth_low_energy_binder_server.h" 37 namespace ipc {  namespace  253 }  // namespace ipc
  | 
| bluetooth_le_advertiser_binder_server.cc  | 17 #include "service/ipc/binder/bluetooth_le_advertiser_binder_server.h" 27 namespace ipc {  namespace  184 }  // namespace ipc
  | 
| bluetooth_le_scanner_binder_server.cc  | 17 #include "service/ipc/binder/bluetooth_le_scanner_binder_server.h" 27 namespace ipc {  namespace  148 }  // namespace ipc
  | 
|   /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/ | 
| ConnectionEventTest.java  | 38         Impl_PooledConnection ipc = new Impl_PooledConnection();  local  39         ConnectionEvent ce = new ConnectionEvent(ipc); 40         assertSame(ipc, ce.getSource()); 51         Impl_PooledConnection ipc = new Impl_PooledConnection();  local  52         ConnectionEvent ce = new ConnectionEvent(ipc, null); 53         assertSame(ipc, ce.getSource()); 57         ce = new ConnectionEvent(ipc, e); 58         assertSame(ipc, ce.getSource()); 66         Impl_PooledConnection ipc = new Impl_PooledConnection();  local  68         ConnectionEvent ce = new ConnectionEvent(ipc, e) 76  Impl_PooledConnection ipc = new Impl_PooledConnection();  local      [all...] | 
|   /external/perfetto/src/ipc/ | 
| buffered_frame_deserializer.cc  | 17 #include "src/ipc/buffered_frame_deserializer.h" 29 #include "src/ipc/wire_protocol.pb.h" 32 namespace ipc {  namespace in namespace:perfetto  195 }  // namespace ipc
  | 
| client_impl.h  | 22 #include "perfetto/ipc/client.h" 23 #include "src/ipc/buffered_frame_deserializer.h" 24 #include "src/ipc/unix_socket.h" 26 #include "src/ipc/wire_protocol.pb.h" 38 namespace ipc {  namespace in namespace:perfetto  99 }  // namespace ipc
  | 
| host_impl.h  | 27 #include "perfetto/ipc/deferred.h" 28 #include "perfetto/ipc/host.h" 29 #include "src/ipc/buffered_frame_deserializer.h" 30 #include "src/ipc/unix_socket.h" 33 namespace ipc {  namespace in namespace:perfetto  97 }  // namespace ipc
  | 
| unix_socket.h  | 29 #include "perfetto/ipc/basic_types.h" 37 namespace ipc {  namespace in namespace:perfetto  211 }  // namespace ipc
  | 
|   /external/perfetto/src/ipc/protoc_plugin/ | 
| ipc_generator.cc  | 17 #include "src/ipc/protoc_plugin/ipc_generator.h" 32 namespace ipc {  namespace in namespace:perfetto  48 static const char kBanner[] = "// DO NOT EDIT. Autogenerated by Perfetto IPC\n"; 51 class $c$ : public ::perfetto::ipc::Service { 53   static ::perfetto::ipc::ServiceDescriptor* NewDescriptor(); 58   static const ::perfetto::ipc::ServiceDescriptor& GetDescriptorStatic(); 61   const ::perfetto::ipc::ServiceDescriptor& GetDescriptor() override; 67 class $c$Proxy : public ::perfetto::ipc::ServiceProxy { 69    explicit $c$Proxy(::perfetto::ipc::ServiceProxy::EventListener*); 73   const ::perfetto::ipc::ServiceDescriptor& GetDescriptor() override     [all...] | 
|   /frameworks/base/cmds/statsd/tests/e2e/ | 
| PartialBucket_e2e_test.cpp  | 46     IPCThreadState* ipc = IPCThreadState::self();  local  47     ConfigKey configKey(ipc->getCallingUid(), kConfigKey);
  | 
|   /hardware/qcom/display/msm8960/libqservice/ | 
| IQService.cpp  | 85     // IPC should be from mediaserver only 86     IPCThreadState* ipc = IPCThreadState::self();  local  87     const int callerPid = ipc->getCallingPid(); 88     const int callerUid = ipc->getCallingUid();
  | 
|   /libcore/luni/src/test/java/libcore/javax/sql/ | 
| OldConnectionEventTest.java  | 31         Impl_PooledConnection ipc = new Impl_PooledConnection();  local  32         ConnectionEvent ce = new ConnectionEvent(ipc); 33         ConnectionEvent ce2 = new ConnectionEvent(ipc,null); 38         Impl_PooledConnection ipc = new Impl_PooledConnection();  local  39         ConnectionEvent ce = new ConnectionEvent(ipc); 41         ConnectionEvent ce2 = new ConnectionEvent(ipc, null); 46         ConnectionEvent ce3 = new ConnectionEvent(ipc, e);
  |