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

  /development/testrunner/
logger.py 87 def SetTimestampLogging(new_timestamp=True):
90 _log_time = new_timestamp
  /external/chromium_org/third_party/android_testrunner/
logger.py 87 def SetTimestampLogging(new_timestamp=True):
90 _log_time = new_timestamp
  /external/chromium_org/media/cast/rtcp/
rtcp_unittest.cc 460 uint32 new_timestamp = 0; local
462 EXPECT_EQ(0, rtcp_peer.CheckForWrapAround(new_timestamp, old_timestamp));
463 new_timestamp = 1234567890;
465 EXPECT_EQ(0, rtcp_peer.CheckForWrapAround(new_timestamp, old_timestamp));
466 new_timestamp = 1234567000;
468 EXPECT_EQ(0, rtcp_peer.CheckForWrapAround(new_timestamp, old_timestamp));
469 new_timestamp = 123;
471 EXPECT_EQ(1, rtcp_peer.CheckForWrapAround(new_timestamp, old_timestamp));
472 new_timestamp = 4234567890u;
474 EXPECT_EQ(-1, rtcp_peer.CheckForWrapAround(new_timestamp, old_timestamp))
    [all...]
rtcp.cc 474 int Rtcp::CheckForWrapAround(uint32 new_timestamp,
476 if (new_timestamp < old_timestamp) {
478 // (e.g. |new_timestamp| = 1, |rtcp_rtp_timestamp| = 2^32 - 1). Since it is
480 if (static_cast<int32>(new_timestamp - old_timestamp) > 0) {
483 } else if (static_cast<int32>(old_timestamp - new_timestamp) > 0) {
rtcp.h 107 int CheckForWrapAround(uint32 new_timestamp,
  /external/chromium/net/tools/testserver/
chromiumsync.py 219 def SaveProgress(self, new_timestamp, get_updates_response):
220 """Write the new_timestamp or new_progress_marker fields to a response."""
227 new_marker.token = str(max(old_timestamp, new_timestamp))
231 if self._original_request.from_timestamp < new_timestamp:
232 get_updates_response.new_timestamp = new_timestamp
    [all...]
chromiumsync_test.py 362 self.assertFalse(response.HasField('new_timestamp'))
367 self.assertTrue(response.HasField('new_timestamp'))
368 self.assertEqual(15413, response.new_timestamp)
387 self.assertFalse(response.HasField('new_timestamp'))
409 self.assertFalse(response.HasField('new_timestamp'))
418 self.assertFalse(response.HasField('new_timestamp'))
427 self.assertFalse(response.HasField('new_timestamp'))
453 self.assertFalse(response.HasField('new_timestamp'))
478 self.assertFalse(response.HasField('new_timestamp'))
  /external/chromium_org/media/base/android/
media_codec_bridge_unittest.cc 117 base::TimeDelta new_timestamp; local
135 &new_timestamp,
143 ASSERT_TRUE(new_timestamp >= timestamp);
145 timestamp = new_timestamp;
  /external/chromium_org/sync/tools/testserver/
chromiumsync.py 457 def SaveProgress(self, new_timestamp, get_updates_response):
458 """Write the new_timestamp or new_progress_marker fields to a response."""
465 final_stamp = max(old_timestamp, new_timestamp)
470 if self._original_request.from_timestamp < new_timestamp:
471 get_updates_response.new_timestamp = new_timestamp
    [all...]
chromiumsync_test.py 327 self.assertFalse(response.HasField('new_timestamp'))
332 self.assertTrue(response.HasField('new_timestamp'))
333 self.assertEqual(15413, response.new_timestamp)
352 self.assertFalse(response.HasField('new_timestamp'))
374 self.assertFalse(response.HasField('new_timestamp'))
383 self.assertFalse(response.HasField('new_timestamp'))
392 self.assertFalse(response.HasField('new_timestamp'))
419 self.assertFalse(response.HasField('new_timestamp'))
442 self.assertFalse(response.HasField('new_timestamp'))
503 self.assertFalse(response.HasField('new_timestamp'))
    [all...]
  /external/chromium_org/chrome/browser/search_engines/
template_url_service_sync_unittest.cc 1916 base::Time new_timestamp = added_turl->last_modified(); local
    [all...]

Completed in 243 milliseconds