HomeSort by relevance Sort by last modified time
    Searched refs:GetInt64 (Results 1 - 25 of 42) sorted by null

1 2

  /system/update_engine/common/
mock_prefs.h 35 MOCK_CONST_METHOD2(GetInt64, bool(const std::string& key, int64_t* value));
prefs_interface.h 59 virtual bool GetInt64(const std::string& key, int64_t* value) const = 0;
prefs_unittest.cc 133 TEST_F(PrefsTest, GetInt64) {
136 EXPECT_TRUE(prefs_.GetInt64(kKey, &value));
143 EXPECT_FALSE(prefs_.GetInt64(kKey, &value));
150 EXPECT_TRUE(prefs_.GetInt64(kKey, &value));
158 EXPECT_TRUE(prefs_.GetInt64(kKey, &value));
165 EXPECT_TRUE(prefs_.GetInt64(kKey, &value));
171 EXPECT_FALSE(prefs_.GetInt64("random-key", &value));
350 EXPECT_FALSE(prefs_.GetInt64(kKey, &value));
354 EXPECT_TRUE(prefs_.GetInt64(kKey, &value));
fake_prefs.h 44 bool GetInt64(const std::string& key, int64_t* value) const override;
fake_prefs.cc 73 bool FakePrefs::GetInt64(const string& key, int64_t* value) const {
prefs.h 65 bool GetInt64(const std::string& key, int64_t* value) const override;
prefs.cc 47 bool PrefsBase::GetInt64(const string& key, int64_t* value) const {
  /system/update_engine/
omaha_request_action_unittest.cc 631 ASSERT_TRUE(fake_prefs_.GetInt64(kPrefsUpdateCheckCount, &count));
659 ASSERT_TRUE(fake_prefs_.GetInt64(kPrefsUpdateCheckCount, &count));
704 ASSERT_TRUE(fake_prefs_.GetInt64(kPrefsUpdateCheckCount, &count));
    [all...]
update_attempter_unittest.cc 226 EXPECT_CALL(*prefs_, GetInt64(kPrefsDeltaUpdateFailures, _)).Times(0);
237 EXPECT_CALL(*prefs_, GetInt64(kPrefsDeltaUpdateFailures, _))
253 EXPECT_CALL(*prefs_, GetInt64(kPrefsDeltaUpdateFailures, _)).Times(0);
306 EXPECT_CALL(*prefs_, GetInt64(kPrefsDeltaUpdateFailures, _))
310 EXPECT_CALL(*prefs_, GetInt64(kPrefsDeltaUpdateFailures, _))
316 EXPECT_CALL(*prefs_, GetInt64(kPrefsDeltaUpdateFailures, _))
322 EXPECT_CALL(*prefs_, GetInt64(_, _)).Times(0);
328 EXPECT_CALL(*prefs_, GetInt64(kPrefsDeltaUpdateFailures, _))
804 EXPECT_TRUE(fake_prefs.GetInt64(kPrefsUpdateCheckCount, &new_value));
    [all...]
payload_state.cc 791 if (!prefs_->GetInt64(key, &stored_value))
    [all...]
omaha_request_action.cc 518 if (system_state_->prefs()->GetInt64(key, &last_ping) && last_ping >= 0) {
568 if (prefs->GetInt64(kPrefsInstallDateDays, &stored_value)) {
    [all...]
update_attempter.cc 195 system_state_->prefs()->GetInt64(kPrefsDailyMetricsLastReportedAt,
501 if (prefs_->GetInt64(kPrefsWallClockWaitPeriod, &wait_period_in_secs) &&
    [all...]
update_attempter_android.cc 493 prefs_->GetInt64(kPrefsManifestMetadataSize, &manifest_metadata_size);
494 prefs_->GetInt64(kPrefsManifestSignatureSize, &manifest_signature_size);
501 prefs_->GetInt64(kPrefsUpdateStateNextDataOffset, &next_data_offset);
metrics_utils.cc 269 if (system_state->prefs()->GetInt64(state_variable_key, &stored_value)) {
payload_state_unittest.cc 604 EXPECT_CALL(*prefs2, GetInt64(_, _)).Times(AtLeast(1));
605 EXPECT_CALL(*prefs2, GetInt64(kPrefsPayloadAttemptNumber, _))
607 EXPECT_CALL(*prefs2, GetInt64(kPrefsFullPayloadAttemptNumber, _))
609 EXPECT_CALL(*prefs2, GetInt64(kPrefsCurrentUrlIndex, _))
611 EXPECT_CALL(*prefs2, GetInt64(kPrefsCurrentUrlFailureCount, _))
613 EXPECT_CALL(*prefs2, GetInt64(kPrefsUrlSwitchCount, _))
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
pointertest.cpp 653 EXPECT_EQ(i64, Pointer("/foo/int64").GetWithDefault(d, i64, a).GetInt64());
654 EXPECT_EQ(i64, Pointer("/foo/int64").GetWithDefault(d, i64 + 1, a).GetInt64());
705 EXPECT_EQ(i64, Pointer("/foo/int64").GetWithDefault(d, i64).GetInt64());
706 EXPECT_EQ(i64, Pointer("/foo/int64").GetWithDefault(d, i64 + 1).GetInt64());
764 EXPECT_EQ(i64, GetValueByPointer(d, "/foo/int64")->GetInt64());
823 EXPECT_EQ(i64, GetValueByPointer(d, "/foo/int64")->GetInt64());
973 EXPECT_EQ(i64, GetValueByPointerWithDefault(d, Pointer("/foo/int64"), i64, a).GetInt64());
974 EXPECT_EQ(i64, GetValueByPointerWithDefault(d, Pointer("/foo/int64"), i64 + 1, a).GetInt64());
    [all...]
valuetest.cpp 363 EXPECT_EQ(1234, x.GetInt64());
388 EXPECT_EQ(-1234, nx.GetInt64());
416 EXPECT_EQ(1234, x.GetInt64());
455 EXPECT_EQ(1234, x.GetInt64());
474 EXPECT_EQ(-1234, nx.GetInt64());
483 EXPECT_EQ(1234, z.GetInt64());
509 EXPECT_EQ(1234, x.GetInt64());
947 EXPECT_EQ(INT64_C(-4294967296), o["int64"].GetInt64());
    [all...]
  /system/update_engine/payload_consumer/
delta_performer.cc     [all...]
  /system/core/libcutils/tests/
PropertiesTest.cpp 215 TEST_F(PropertiesTest, GetInt64) {
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/
generated_message_reflection.h 159 int64 GetInt64 (const Message& message,
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/
generated_message_reflection.h 159 int64 GetInt64 (const Message& message,
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/
generated_message_reflection.h 159 int64 GetInt64 (const Message& message,
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/
generated_message_reflection.h 159 int64 GetInt64 (const Message& message,
  /external/opencv3/samples/winrt/ImageManipulations/common/
suspensionmanager.cpp 349 writer->WriteUInt64(propertyValue->GetInt64());
  /external/protobuf/src/google/protobuf/
generated_message_reflection.h 201 int64 GetInt64 (const Message& message,

Completed in 1785 milliseconds

1 2