Home
last modified time | relevance | path

Searched refs:load_info (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/webkit/child/
Dweburlloader_impl.cc742 WebHTTPLoadInfo load_info; in PopulateURLResponse() local
744 load_info.setHTTPStatusCode(info.devtools_info->http_status_code); in PopulateURLResponse()
745 load_info.setHTTPStatusText(WebString::fromLatin1( in PopulateURLResponse()
747 load_info.setEncodedDataLength(info.encoded_data_length); in PopulateURLResponse()
749 load_info.setRequestHeadersText(WebString::fromLatin1( in PopulateURLResponse()
751 load_info.setResponseHeadersText(WebString::fromLatin1( in PopulateURLResponse()
756 load_info.addRequestHeader(WebString::fromLatin1(it->first), in PopulateURLResponse()
763 load_info.addResponseHeader(WebString::fromLatin1(it->first), in PopulateURLResponse()
766 response->setHTTPLoadInfo(load_info); in PopulateURLResponse()
/external/chromium/webkit/glue/
Dweburlloader_impl.cc221 WebHTTPLoadInfo load_info; in PopulateURLResponse() local
223 load_info.setHTTPStatusCode(info.devtools_info->http_status_code); in PopulateURLResponse()
224 load_info.setHTTPStatusText(WebString::fromUTF8( in PopulateURLResponse()
226 load_info.setEncodedDataLength(info.encoded_data_length); in PopulateURLResponse()
231 load_info.addRequestHeader(WebString::fromUTF8(it->first), in PopulateURLResponse()
238 load_info.addResponseHeader(WebString::fromUTF8(it->first), in PopulateURLResponse()
241 response->setHTTPLoadInfo(load_info); in PopulateURLResponse()
/external/iproute2/misc/
Difstat.c118 void load_info(void) in load_info() function
433 load_info(); in update_db()
495 load_info(); in server_loop()
749 load_info(); in main()
/external/chromium_org/sync/syncable/
Ddirectory_backing_store_unittest.cc2845 Directory::KernelLoadInfo load_info; in TEST_F() local
2848 ASSERT_TRUE(dbs->Load(&handles_map, &delete_journals, &load_info)); in TEST_F()
2849 EXPECT_LE(load_info.kernel_info.next_id, kInitialNextId - 65536); in TEST_F()
2868 Directory::KernelLoadInfo load_info; in TEST_F() local
2870 ASSERT_TRUE(dbs->Load(&handles_map, &delete_journals, &load_info)); in TEST_F()
2875 EXPECT_EQ(serialized_chip_bag, load_info.kernel_info.bag_of_chips); in TEST_F()
/external/chromium_org/content/browser/loader/
Dresource_dispatcher_host_impl.cc1801 LoadInfo& load_info = info_map[id]; in UpdateLoadStates() local
1802 load_info.url = request->url(); in UpdateLoadStates()
1803 load_info.load_state = to_insert; in UpdateLoadStates()
1804 load_info.upload_size = progress.size(); in UpdateLoadStates()
1805 load_info.upload_position = progress.position(); in UpdateLoadStates()