Searched defs:ws (Results 1 - 14 of 14) sorted by relevance

/frameworks/base/opengl/java/android/opengl/
H A DVisibility.java29 * @param ws the world space to screen space transform matrix, as an OpenGL
31 * @param wsOffset an index into the ws array where the data starts.
45 * @throws IllegalArgumentException if ws is null, wsOffset < 0,
49 public static native int visibilityTest(float[] ws, int wsOffset, argument
/frameworks/base/services/java/com/android/server/location/
H A DLocationProviderInterface.java51 void setMinTime(long minTime, WorkSource ws); argument
H A DPassiveProvider.java127 public void setMinTime(long minTime, WorkSource ws) { argument
H A DLocationProviderProxy.java397 public void setMinTime(long minTime, WorkSource ws) { argument
400 mMinTimeSource.set(ws);
404 provider.setMinTime(minTime, ws);
H A DMockProvider.java205 public void setMinTime(long minTime, WorkSource ws) { argument
H A DGpsLocationProvider.java834 public void setMinTime(long minTime, WorkSource ws) { argument
/frameworks/base/core/java/android/os/
H A DPowerManager.java361 public void setWorkSource(WorkSource ws) { argument
363 if (ws != null && ws.size() == 0) {
364 ws = null;
367 if (ws == null) {
371 mWorkSource = new WorkSource(ws);
373 changed = mWorkSource.diff(ws);
375 mWorkSource.set(ws);
/frameworks/base/location/lib/java/com/android/location/provider/
H A DLocationProvider.java112 public void setMinTime(long minTime, WorkSource ws) {
113 LocationProvider.this.onSetMinTime(minTime, ws);
309 * @param ws the source this work is coming from.
311 public abstract void onSetMinTime(long minTime, WorkSource ws); argument
347 * @param ws a WorkSource representation of the client.
349 public abstract void onAddListener(int uid, WorkSource ws); argument
355 * @param ws a WorkSource representation of the client.
357 public abstract void onRemoveListener(int uid, WorkSource ws); argument
/frameworks/av/media/libstagefright/rtsp/
H A DARTSPConnection.cpp359 fd_set ws; local
360 FD_ZERO(&ws);
361 FD_SET(mSocket, &ws);
363 int res = select(mSocket + 1, NULL, &ws, NULL, &tv);
/frameworks/base/services/java/com/android/server/am/
H A DBatteryStatsService.java119 public void noteStartWakelockFromSource(WorkSource ws, int pid, String name, int type) { argument
122 mStats.noteStartWakeFromSourceLocked(ws, pid, name, type);
126 public void noteStopWakelockFromSource(WorkSource ws, int pid, String name, int type) { argument
129 mStats.noteStopWakeFromSourceLocked(ws, pid, name, type);
272 public void noteWifiRunning(WorkSource ws) { argument
275 mStats.noteWifiRunningLocked(ws);
286 public void noteWifiStopped(WorkSource ws) { argument
289 mStats.noteWifiStoppedLocked(ws);
378 public void noteFullWifiLockAcquiredFromSource(WorkSource ws) { argument
381 mStats.noteFullWifiLockAcquiredFromSourceLocked(ws);
385 noteFullWifiLockReleasedFromSource(WorkSource ws) argument
392 noteScanWifiLockAcquiredFromSource(WorkSource ws) argument
399 noteScanWifiLockReleasedFromSource(WorkSource ws) argument
406 noteWifiMulticastEnabledFromSource(WorkSource ws) argument
413 noteWifiMulticastDisabledFromSource(WorkSource ws) argument
[all...]
/frameworks/base/services/java/com/android/server/
H A DWifiService.java1225 WifiLock(int lockMode, String tag, IBinder binder, WorkSource ws) { argument
1226 super(lockMode, tag, binder, ws);
1308 public boolean acquireWifiLock(IBinder binder, int lockMode, String tag, WorkSource ws) { argument
1317 if (ws != null && ws.size() == 0) {
1318 ws = null;
1320 if (ws != null) {
1323 if (ws == null) {
1324 ws = new WorkSource(Binder.getCallingUid());
1326 WifiLock wifiLock = new WifiLock(lockMode, tag, binder, ws);
1390 updateWifiLockWorkSource(IBinder lock, WorkSource ws) argument
1468 DeathRecipient(int mode, String tag, IBinder binder, WorkSource ws) argument
[all...]
H A DPowerManagerService.java762 WorkSource ws; field in class:PowerManagerService.WakeLock
796 public void acquireWakeLock(int flags, IBinder lock, String tag, WorkSource ws) { argument
802 if (ws != null) {
808 acquireWakeLockLocked(flags, lock, uid, pid, tag, ws);
815 void noteStartWakeLocked(WakeLock wl, WorkSource ws) { argument
819 if (ws != null) {
820 mBatteryStats.noteStartWakelockFromSource(ws, wl.pid, wl.tag,
833 void noteStopWakeLocked(WakeLock wl, WorkSource ws) { argument
837 if (ws != null) {
838 mBatteryStats.noteStopWakelockFromSource(ws, w
851 acquireWakeLockLocked(int flags, IBinder lock, int uid, int pid, String tag, WorkSource ws) argument
981 updateWakeLockWorkSource(IBinder lock, WorkSource ws) argument
[all...]
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiManager.java1634 public void setWorkSource(WorkSource ws) { argument
1636 if (ws != null && ws.size() == 0) {
1637 ws = null;
1640 if (ws == null) {
1644 mWorkSource = new WorkSource(ws);
1646 changed = mWorkSource.diff(ws);
1648 mWorkSource.set(ws);
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java1534 public void noteStartWakeFromSourceLocked(WorkSource ws, int pid, String name, int type) { argument
1535 int N = ws.size();
1537 noteStartWakeLocked(ws.get(i), pid, name, type);
1541 public void noteStopWakeFromSourceLocked(WorkSource ws, int pid, String name, int type) { argument
1542 int N = ws.size();
1544 noteStopWakeLocked(ws.get(i), pid, name, type);
2082 public void noteWifiRunningLocked(WorkSource ws) { argument
2090 int N = ws.size();
2092 getUidStatsLocked(ws.get(i)).noteWifiRunningLocked();
2114 public void noteWifiStoppedLocked(WorkSource ws) { argument
2225 noteFullWifiLockAcquiredFromSourceLocked(WorkSource ws) argument
2232 noteFullWifiLockReleasedFromSourceLocked(WorkSource ws) argument
2239 noteScanWifiLockAcquiredFromSourceLocked(WorkSource ws) argument
2246 noteScanWifiLockReleasedFromSourceLocked(WorkSource ws) argument
2253 noteWifiMulticastEnabledFromSourceLocked(WorkSource ws) argument
2260 noteWifiMulticastDisabledFromSourceLocked(WorkSource ws) argument
[all...]

Completed in 329 milliseconds