HomeSort by relevance Sort by last modified time
    Searched defs:json_string (Results 1 - 8 of 8) sorted by null

  /external/libchrome/base/json/
json_file_value_serializer.cc 38 std::string json_string; local
39 JSONStringValueSerializer serializer(&json_string);
47 int data_size = static_cast<int>(json_string.size());
48 if (base::WriteFile(json_file_path_, json_string.data(), data_size) !=
65 int JSONFileValueDeserializer::ReadFileToString(std::string* json_string) {
66 DCHECK(json_string);
67 if (!base::ReadFileToString(json_file_path_, json_string)) {
82 last_read_size_ = json_string->size();
107 std::string json_string; local
108 int error = ReadFileToString(&json_string);
    [all...]
  /external/webrtc/talk/app/webrtc/
androidvideocapturer.cc 137 std::string json_string = delegate_->GetSupportedFormats(); local
138 LOG(LS_INFO) << json_string;
142 if (!reader.parse(json_string, json_values)) {
  /external/autotest/client/cros/
enterprise_policy_base.py 433 def json_string(self, policy_value): member in class:EnterprisePolicyTest
  /system/weaved/buffet/
buffet_config.cc 177 std::string json_string; local
178 if (!encryptor_->DecryptWithAuthentication(settings_blob, &json_string)) {
184 return json_string;
  /external/libweave/src/
config.cc 149 std::string json_string = config_->config_store_->LoadSettings(kConfigName);
150 if (json_string.empty()) {
151 json_string = config_->config_store_->LoadSettings();
152 if (json_string.empty())
156 auto value = base::JSONReader::Read(json_string);
280 std::string json_string; local
282 dict, base::JSONWriter::OPTIONS_PRETTY_PRINT, &json_string);
285 kConfigName, json_string,
device_registration_info_unittest.cc 167 std::string json_string; local
169 dict, base::JSONWriter::OPTIONS_PRETTY_PRINT, &json_string);
170 EXPECT_CALL(config_store_, LoadSettings()).WillOnce(Return(json_string));
  /system/connectivity/shill/
json_store.cc 348 string json_string; local
349 if (!base::ReadFileToString(path_, &json_string)) {
354 JSONStringValueDeserializer json_deserializer(json_string);
448 string json_string; local
449 JSONStringValueSerializer json_serializer(&json_string);
457 if (!base::ImportantFileWriter::WriteFileAtomically(path_, json_string)) {
  /external/v8/test/cctest/
test-heap-profiler.cc 916 v8::Local<v8::String> json_string = local
    [all...]

Completed in 476 milliseconds