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

  /device/google/contexthub/util/nanotool/
calibrationfile.cpp 120 AString json_str = json_root_->toString(); local
121 LOGD("Saving JSONObject to file (%zd bytes):\n%s", json_str.size(),
122 json_str.c_str());
124 ssize_t bytes_written = file_->write(json_str.c_str(), json_str.size());
125 if (bytes_written < 0 || static_cast<size_t>(bytes_written) != json_str.size()) {
126 LOGE("Write returned %zd, expected %zu", bytes_written, json_str.size());
  /external/autotest/server/site_tests/autoupdate_EndToEndTest/
update_engine_performance_monitor.py 253 json_str = monitor.run(signal.SIGTERM) variable
255 if json_str:
257 fifo.write(json_str)
272 json_str = fifo.read() variable
273 print json_str
279 json_str = monitor.run(signal.SIGINT) variable
280 if json_str:
281 print json_str
  /external/tensorflow/tensorflow/contrib/tpu/profiler/
trace_events_to_json_test.cc 31 Json::Value ToJsonValue(const string& json_str) {
34 EXPECT_TRUE(reader.parse(json_str, json));
  /hardware/qcom/msm8998/json-c/
json_util.c 103 const char *json_str; local
118 if(!(json_str = json_object_to_json_string_ext(obj,flags))) {
123 wsize = (unsigned int)(strlen(json_str) & UINT_MAX); /* CAW: probably unnecessary, but the most 64bit safe */
126 if((ret = write(fd, json_str + wpos, wsize-wpos)) < 0) {
  /system/update_engine/update_manager/
evaluation_context.cc 245 string json_str;
247 value, base::JSONWriter::OPTIONS_PRETTY_PRINT, &json_str);
248 base::TrimWhitespaceASCII(json_str, base::TRIM_TRAILING, &json_str);
250 return json_str;
  /tools/test/connectivity/acts/framework/acts/
records.py 197 def json_str(self): member in class:TestResultRecord
319 def json_str(self): member in class:TestResult
340 json_str = json.dumps(d, indent=4, sort_keys=True)
341 return json_str
test_runner.py 572 f.write(self.results.json_str())
  /external/tensorflow/tensorflow/contrib/training/python/training/
hparam_test.py 287 json_str = hparams.to_json()
289 hparams2.parse_json(json_str)
  /tools/test/connectivity/acts/framework/tests/
acts_records_test.py 63 self.assertTrue(record.json_str(), ("json str of the record should "
  /tools/test/connectivity/acts/framework/acts/test_utils/coex/
CoexBaseTest.py 99 json_result = self.results.json_str()
  /tools/test/connectivity/acts/tests/google/tel/live/
TelLiveStressTest.py 394 json_str = json.dumps(self.perf_data, indent=4, sort_keys=True)
396 f.write(json_str)
  /external/tensorflow/tensorflow/python/keras/_impl/keras/engine/
topology_test.py 459 json_str = model.to_json()
460 keras.models.model_from_json(json_str)
  /external/v8/src/
d8.cc 267 const char* json_str) {
274 String::NewFromUtf8(isolate, json_str, NewStringType::kNormal)
353 v8::Isolate* isolate, const char* json_str) {
356 TraceConfigParser::FillTraceConfig(isolate, trace_config, json_str);
    [all...]

Completed in 762 milliseconds