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

  /packages/apps/Settings/src/com/android/settings/applications/
AppStateNotificationBridge.java 121 stats.avgSentDaily = Math.round((float) stats.sentCount / DAYS_TO_CHECK);
122 if (stats.sentCount < DAYS_TO_CHECK) {
123 stats.avgSentWeekly = stats.sentCount;
156 stats.sentCount++;
189 stats.sentCount++;
257 return state.sentCount != 0;
288 if (state1.sentCount < state2.sentCount) return 1;
289 if (state1.sentCount > state2.sentCount) return -1
    [all...]
  /packages/apps/Settings/tests/robotests/src/com/android/settings/applications/
AppStateNotificationBridgeTest.java 152 assertThat(map.get(mBridge.getKey(0, PKG1)).sentCount).isEqualTo(1);
174 assertThat(map.get(mBridge.getKey(0, PKG1)).sentCount).isEqualTo(2);
198 assertThat(map.get(mBridge.getKey(0, PKG1)).sentCount).isEqualTo(1);
199 assertThat(map.get(mBridge.getKey(0, PKG2)).sentCount).isEqualTo(1);
236 assertThat(((NotificationsSentState) apps.get(0).extraInfo).sentCount).isEqualTo(7);
271 assertThat(((NotificationsSentState) apps.get(0).extraInfo).sentCount).isEqualTo(8);
276 assertThat(((NotificationsSentState) apps.get(1).extraInfo).sentCount).isEqualTo(1);
327 assertThat(((NotificationsSentState) apps.get(0).extraInfo).sentCount).isEqualTo(8);
332 assertThat(((NotificationsSentState) apps.get(1).extraInfo).sentCount).isEqualTo(4);
367 assertThat(((NotificationsSentState) entry.extraInfo).sentCount).isEqualTo(13)
    [all...]
  /external/libvncserver/libvncserver/
stats.c 229 ptr->sentCount++;
255 ptr->sentCount++;
328 if (ptr->type==type) return ptr->sentCount;
345 if (ptr->type==type) return ptr->sentCount;
399 count = ptr->sentCount;
417 count = ptr->sentCount;
  /external/libvncserver/rfb/
rfb.h 429 uint32_t sentCount;
    [all...]

Completed in 86 milliseconds