MCPcopy Create free account
hub / github.com/apache/impala / read

Method read

be/src/transport/THttpTransport.cpp:68–77  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

66}
67
68uint32_t THttpTransport::read(uint8_t* buf, uint32_t len) {
69 if (readBuffer_.available_read() == 0) {
70 readBuffer_.resetBuffer();
71 uint32_t got = readMoreData();
72 if (got == 0) {
73 return 0;
74 }
75 }
76 return readBuffer_.read(buf, len);
77}
78
79uint32_t THttpTransport::readEnd() {
80 // Read any pending chunked data (footers etc.)

Callers 15

reqs_are_installedFunction · 0.45
check_digestFunction · 0.45
create_tablesFunction · 0.45
load_dataFunction · 0.45
get_xml_contentMethod · 0.45
test_print_to_fileMethod · 0.45

Calls

no outgoing calls