HomeSort by relevance Sort by last modified time
    Searched defs:json_str (Results 1 - 3 of 3) 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 251 json_str = monitor.run(signal.SIGTERM) variable
253 if json_str:
255 fifo.write(json_str)
270 json_str = fifo.read() variable
271 print json_str
277 json_str = monitor.run(signal.SIGINT) variable
278 if json_str:
279 print json_str
  /tools/test/connectivity/acts/framework/acts/
records.py 176 def json_str(self): member in class:TestResultRecord
273 def json_str(self): member in class:TestResult
293 json_str = json.dumps(d, indent=4, sort_keys=True)
294 return json_str

Completed in 95 milliseconds