Searched defs:read_status (Results 1 - 12 of 12) sorted by relevance

/external/chromium_org/courgette/
H A Dencode_decode_unittest.cc55 const courgette::Status read_status = ReadEncodedProgram(&sources, &encoded2); local
56 EXPECT_EQ(courgette::C_OK, read_status);
H A Dencoded_program_fuzz_unittest.cc177 const courgette::Status read_status = local
179 if (read_status == courgette::C_OK) {
H A Dcourgette_tool.cc297 const courgette::Status read_status = ReadEncodedProgram(&sources, &encoded); local
298 if (read_status != courgette::C_OK)
/external/chromium/net/tools/flip_server/
H A Dloadtime_measurement.h93 ssize_t read_status = read(fd, buffer, sizeof(buffer)); local
94 while (read_status > 0) {
95 output->append(buffer, static_cast<size_t>(read_status));
97 read_status = read(fd, buffer, sizeof(buffer));
98 } while (read_status <= 0 && errno == EINTR);
H A Dmem_cache.cc130 ssize_t read_status = read(fd, buffer, sizeof(buffer)); local
131 while (read_status > 0) {
132 output->append(buffer, static_cast<size_t>(read_status));
134 read_status = read(fd, buffer, sizeof(buffer));
135 } while (read_status <= 0 && errno == EINTR);
/external/chromium_org/net/tools/flip_server/
H A Dloadtime_measurement.h93 ssize_t read_status = read(fd, buffer, sizeof(buffer)); local
94 while (read_status > 0) {
95 output->append(buffer, static_cast<size_t>(read_status));
97 read_status = read(fd, buffer, sizeof(buffer));
98 } while (read_status <= 0 && errno == EINTR);
H A Dmem_cache.cc127 ssize_t read_status = read(fd, buffer, sizeof(buffer)); local
128 while (read_status > 0) {
129 output->append(buffer, static_cast<size_t>(read_status));
131 read_status = read(fd, buffer, sizeof(buffer));
132 } while (read_status <= 0 && errno == EINTR);
/external/chromium_org/jingle/glue/
H A Dfake_ssl_client_socket_unittest.cc166 int read_status = fake_ssl_client_socket.Read( local
168 ExpectStatus(mode, read_len, read_status, &test_completion_callback);
/external/chromium_org/tools/linux/
H A Dprocfs.py635 self.read_status()
655 def read_status(self): member in class:_ProcessMemory
/external/srec/portable/src/
H A DPFileWrap.c43 ESR_ReturnCode read_status; local
51 read_status = ESR_SUCCESS;
60 read_status = ESR_SUCCESS;
65 read_status = ESR_READ_ERROR;
68 return ( read_status );
/external/chromium_org/chrome/installer/util/
H A Dinstall_util.cc140 LONG read_status = active_setup_key.ReadValue(L"StubPath", &cmd_str); local
141 if (read_status != ERROR_SUCCESS) {
142 LOG(ERROR) << active_setup_reg << ", " << read_status; local
/external/chromium_org/chrome/browser/sync_file_system/local/
H A Dcanned_syncable_file_system.cc111 const bool read_status = base::ReadFileToString(platform_path, &data); local
112 EXPECT_TRUE(read_status);

Completed in 1151 milliseconds