HomeSort by relevance Sort by last modified time
    Searched defs:ClientInfo (Results 1 - 9 of 9) sorted by null

  /external/google-breakpad/src/client/mac/crash_generation/
client_info.h 35 class ClientInfo {
37 explicit ClientInfo(pid_t pid) : pid_(pid) {}
  /external/google-breakpad/src/client/linux/crash_generation/
client_info.h 37 class ClientInfo {
39 ClientInfo(pid_t pid, CrashGenerationServer* crash_server)
  /external/google-breakpad/src/client/windows/crash_generation/
client_info.cc 38 ClientInfo::ClientInfo(CrashGenerationServer* crash_server,
61 bool ClientInfo::Initialize() {
90 void ClientInfo::UnregisterDumpRequestWaitAndBlockUntilNoPending() {
98 void ClientInfo::UnregisterProcessExitWait(bool block_until_no_pending) {
110 ClientInfo::~ClientInfo() {
111 // Waiting for the callback to finish here is safe because ClientInfo's are
115 // This is a little tricky because ClientInfo's may be destroyed by the same
120 // before deleting the ClientInfo
    [all...]
client_info.h 44 class ClientInfo {
49 ClientInfo(CrashGenerationServer* crash_server,
57 ~ClientInfo();
171 ClientInfo(const ClientInfo& client_info);
172 ClientInfo& operator=(const ClientInfo& client_info);
  /frameworks/av/media/libstagefright/wifi-display/source/
WifiDisplaySource.h 148 struct ClientInfo {
155 ClientInfo mClientInfo;
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
RttService.java 62 ClientInfo cInfo = new ClientInfo(c, msg.replyTo);
75 ClientInfo ci = mClients.remove(msg.replyTo);
84 ClientInfo ci = mClients.get(msg.replyTo);
146 ClientInfo ci;
160 private class ClientInfo {
166 ClientInfo(AsyncChannel c, Messenger m) {
224 private HashMap<Messenger, ClientInfo> mClients = new HashMap<Messenger, ClientInfo>(4);
276 ClientInfo ci = mClients.get(msg.replyTo)
    [all...]
WifiScanningServiceImpl.java 140 ClientInfo cInfo = new ClientInfo(msg.sendingUid, ac, msg.replyTo);
150 ClientInfo ci = mClients.remove(msg.replyTo);
170 ClientInfo ci = mClients.get(msg.replyTo);
334 ClientInfo ci = mClients.get(msg.replyTo);
390 ClientInfo ci = mClients.get(msg.replyTo);
425 removeScanRequest((ClientInfo) msg.obj, msg.arg2);
446 Collection<ClientInfo> clients = mClients.values();
447 for (ClientInfo ci2 : clients) {
455 Collection<ClientInfo> clients = mClients.values()
    [all...]
  /frameworks/base/services/core/java/com/android/server/
NsdService.java 70 private HashMap<Messenger, ClientInfo> mClients = new HashMap<Messenger, ClientInfo>();
73 private SparseArray<ClientInfo> mIdToClientInfoMap= new SparseArray<ClientInfo>();
149 ClientInfo cInfo = null;
156 cInfo = new ClientInfo(c, msg.replyTo);
252 private boolean requestLimitReached(ClientInfo clientInfo) {
253 if (clientInfo.mClientIds.size() >= ClientInfo.MAX_LIMIT)
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
WifiP2pServiceImpl.java 229 private HashMap<Messenger, ClientInfo> mClientInfoList = new HashMap<Messenger, ClientInfo>();
    [all...]

Completed in 2116 milliseconds