HomeSort by relevance Sort by last modified time
    Searched defs:write_result (Results 1 - 14 of 14) sorted by null

  /external/compiler-rt/test/dfsan/
write_callback.c 93 int write_result = write(fd, aString, len); local
94 assert(write_result == -1);
  /external/chromium_org/chrome/browser/chromeos/file_system_provider/fileapi/
file_stream_writer_unittest.cc 177 const int write_result = writer.Write(io_buffer.get(), local
180 EXPECT_EQ(net::ERR_IO_PENDING, write_result);
  /external/chromium_org/content/browser/download/
base_file.cc 115 int write_result = file_.WriteAtCurrentPos(current_data, len); local
116 DCHECK_NE(0, write_result);
119 if (write_result < 0)
123 size_t write_size = static_cast<size_t>(write_result);
  /external/chromium_org/ipc/mojo/
ipc_channel_mojo_readers.cc 107 MojoResult write_result = local
109 if (write_result != MOJO_RESULT_OK) {
110 CloseWithError(write_result);
148 MojoResult write_result = local
155 if (MOJO_RESULT_OK != write_result) {
157 CloseWithError(write_result);
223 MojoResult write_result = local
230 if (MOJO_RESULT_OK != write_result) {
232 return write_result;
286 MojoResult write_result local
    [all...]
  /external/chromium_org/net/socket/
tcp_server_socket_unittest.cc 223 int write_result = accepted_socket->Write( local
225 write_result = write_callback.GetResult(write_result);
226 ASSERT_TRUE(write_result >= 0);
227 ASSERT_TRUE(bytes_written + write_result <= message.size());
228 bytes_written += write_result;
tcp_socket_unittest.cc 259 int write_result = accepted_socket->Write( local
261 write_result = write_callback.GetResult(write_result);
262 ASSERT_TRUE(write_result >= 0);
263 bytes_written += write_result;
socket_test_util.cc 902 MockWriteResult write_result = data_->OnWrite(data); local
906 if (write_result.mode == ASYNC) {
907 RunCallbackAsync(callback, write_result.result);
911 return write_result.result;
1087 MockWriteResult write_result = data_->OnWrite(data); local
1594 MockWriteResult write_result = data_->OnWrite(data); local
    [all...]
  /external/chromium_org/mojo/system/
raw_channel_posix.cc 225 ssize_t write_result; local
247 write_result = embedder::PlatformChannelSendmsgWithHandles(
257 write_result = embedder::PlatformChannelWrite(
268 write_result =
273 if (write_result >= 0) {
275 *bytes_written = static_cast<size_t>(write_result);
  /external/chromium_org/chromeos/dbus/
cros_disks_client.cc 585 const int write_result = base::WriteFile( local
587 if (write_result != static_cast<int>(dummy_file_content.size())) {
  /external/chromium_org/mojo/public/cpp/utility/tests/
run_loop_unittest.cc 344 MojoResult write_result = WriteMessageRaw( local
347 EXPECT_EQ(write_result, MOJO_RESULT_OK);
  /external/chromium_org/chrome/browser/devtools/device/adb/
mock_adb_server.cc 313 int write_result = socket_->Write( local
318 if (write_result != net::ERR_IO_PENDING)
319 OnDataWritten(write_result);
  /external/protobuf/src/google/protobuf/compiler/
command_line_interface.cc 326 int write_result; local
328 write_result = write(file_descriptor, data, size);
329 } while (write_result < 0 && errno == EINTR);
331 if (write_result <= 0) {
342 if (write_result < 0) {
351 data += write_result;
352 size -= write_result;
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
command_line_interface.cc 345 int write_result; local
347 write_result = write(file_descriptor, data, size);
348 } while (write_result < 0 && errno == EINTR);
350 if (write_result <= 0) {
361 if (write_result < 0) {
370 data += write_result;
371 size -= write_result;
    [all...]
  /external/wpa_supplicant_8/hs20/client/
osu_client.c 26 void write_result(struct hs20_osu_client *ctx, const char *fmt, ...) function
198 write_result(ctx, "Invalid client certificate SHA256 hash value in PPS");
207 write_result(ctx, "Could not find client certificate from EST");
219 write_result(ctx, "Client certificate from EST does not match fingerprint from PPS MO");
298 write_result(ctx, "Invalid SHA256 hash value for downloaded certificate");
327 write_result(ctx, "Downloaded certificate fingerprint did not match");
525 write_result(ctx, "Unsupported location for addMO to add PPS MO: '%s'",
538 write_result(ctx, "Unsupported location for addMO to "
549 write_result(ctx, "FQDN '%s' for new PPS MO did not have suffix match with server's dNSName values",
557 write_result(ctx, "Invalid FQDN '%s'", fqdn)
    [all...]

Completed in 844 milliseconds