HomeSort by relevance Sort by last modified time
    Searched defs:json_str (Results 1 - 4 of 4) 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
  /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) {
  /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

Completed in 392 milliseconds