HomeSort by relevance Sort by last modified time
    Searched refs:mDaemon (Results 1 - 5 of 5) sorted by null

  /hardware/libhardware/modules/sensors/dynamic_sensor/
ConnectionDetector.h 35 ConnectionDetector(BaseDynamicSensorDaemon *d) : mDaemon(d) { }
38 BaseDynamicSensorDaemon* mDaemon;
ConnectionDetector.cpp 94 mDaemon->onConnectionChange(mDevice, true);
98 mDaemon->onConnectionChange(mDevice, false);
100 mDaemon->onConnectionChange(mDevice, false);
155 mDaemon->onConnectionChange(getFullName(name), true /*connected*/);
175 mDaemon->onConnectionChange(getFullName(name), true /*connected*/);
178 mDaemon->onConnectionChange(getFullName(name), false /*connected*/);
  /frameworks/base/tests/net/java/com/android/server/
NsdServiceTest.java 64 @Mock DaemonConnection mDaemon;
93 verify(mDaemon, timeout(100).times(1)).start();
100 verify(mDaemon, timeout(mTimeoutMs).times(1)).stop();
109 when(mDaemon.execute(any())).thenReturn(true);
114 verify(mDaemon, timeout(100).times(1)).start();
136 verify(mDaemon, timeout(mTimeoutMs).times(1)).stop();
147 return mDaemon;
150 verify(mDaemon, never()).execute(any(String.class));
168 verify(mDaemon, timeout(mTimeoutMs).times(n)).execute(argumentsCaptor.capture());
175 reset(mDaemon);
    [all...]
  /frameworks/base/services/core/java/com/android/server/
NsdService.java 70 private final DaemonConnection mDaemon;
158 mDaemon.stop();
218 mDaemon.start();
225 mDaemon.stop();
259 mDaemon.start();
549 mDaemon = fn.get(mDaemonCallback);
724 return mDaemon.execute("register", regId, name, type, port, record);
728 return mDaemon.execute("stop-register", regId);
735 return mDaemon.execute("update", regId, t.size(), t.getRawData());
739 return mDaemon.execute("discover", discoveryId, serviceType)
    [all...]
  /frameworks/base/services/core/java/com/android/server/fingerprint/
FingerprintService.java 140 private IBiometricsFingerprint mDaemon;
275 if (mDaemon == null) {
276 Slog.v(TAG, "mDaemon was null, reconnect to fingerprint");
278 mDaemon = IBiometricsFingerprint.getService();
284 if (mDaemon == null) {
289 mDaemon.asBinder().linkToDeath(this, 0);
292 mHalDeviceId = mDaemon.setNotify(mDaemonCallback);
295 mDaemon = null; // try again later!
306 mDaemon = null;
309 return mDaemon;
    [all...]

Completed in 85 milliseconds