Searched refs:response_text (Results 1 – 3 of 3) sorted by relevance
/external/chromium_org/rlz/win/lib/ |
D | machine_deal.cc | 73 bool GetResponseLine(const char* response_text, int response_length, in GetResponseLine() argument 84 const char* line_end = strchr(response_text + line_begin, '\n'); in GetResponseLine() 86 if (line_end == NULL || line_end - response_text > response_length) { in GetResponseLine() 87 line_end = response_text + response_length; in GetResponseLine() 90 *search_index = line_end - response_text + 1; in GetResponseLine() 93 response_line->assign(response_text + line_begin, in GetResponseLine() 94 line_end - response_text - line_begin); in GetResponseLine()
|
/external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/ |
D | main.py | 87 response_text = fetch_license_data(userid) 89 logging.debug('Attempting to JSON parse: %s' % response_text) 90 json = simplejson.loads(response_text) 93 logging.exception('Could not parse response as JSON: %s' % response_text)
|
/external/chromium_org/net/http/ |
D | http_network_transaction_unittest.cc | 7241 std::string response_text; in TEST_P() local 7242 rv = ReadTransaction(trans.get(), &response_text); in TEST_P() 7244 EXPECT_EQ("Payload", response_text); in TEST_P() 7305 std::string response_text; in TEST_P() local 7306 rv = ReadTransaction(trans.get(), &response_text); in TEST_P() 7308 EXPECT_EQ("Payload", response_text); in TEST_P() 7364 std::string response_text; in TEST_P() local 7365 rv = ReadTransaction(trans.get(), &response_text); in TEST_P() 7367 EXPECT_EQ("Payload", response_text); in TEST_P() 7437 std::string response_text; in TEST_P() local [all …]
|