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

  /external/libmojo/mojo/edk/system/
broker_posix.cc 99 ssize_t write_result = PlatformChannelWrite( local
101 if (write_result < 0) {
104 } else if (static_cast<size_t>(write_result) !=
  /external/compiler-rt/test/dfsan/
write_callback.c 93 int write_result = write(fd, aString, len); local
94 assert(write_result == -1);
  /system/connectivity/wificond/tests/
looper_backed_event_loop_unittest.cpp 110 bool write_result = false; local
111 event_loop_->PostTask([&write_result, &pipe]() {write_result = pipe.writeSignal();});
121 EXPECT_EQ(true, write_result);
126 bool write_result = false; local
131 [&write_result, &pipe, this](int fd) {
132 write_result = pipe.writeSignal();
135 EXPECT_EQ(true, write_result);
142 bool write_result = false; local
143 event_loop_->PostTask([&write_result, &pipe]() {write_result = pipe.writeSignal();})
    [all...]
  /external/protobuf/src/google/protobuf/compiler/
command_line_interface.cc 458 int write_result; local
460 write_result = write(file_descriptor, data, size);
461 } while (write_result < 0 && errno == EINTR);
463 if (write_result <= 0) {
474 if (write_result < 0) {
483 data += write_result;
484 size -= write_result;
    [all...]
  /external/wpa_supplicant_8/hs20/client/
osu_client.c 31 void write_result(struct hs20_osu_client *ctx, const char *fmt, ...) function
203 write_result(ctx, "Invalid client certificate SHA256 hash value in PPS");
212 write_result(ctx, "Could not find client certificate from EST");
224 write_result(ctx, "Client certificate from EST does not match fingerprint from PPS MO");
303 write_result(ctx, "Invalid SHA256 hash value for downloaded certificate");
332 write_result(ctx, "Downloaded certificate fingerprint did not match");
530 write_result(ctx, "Unsupported location for addMO to add PPS MO: '%s'",
543 write_result(ctx, "Unsupported location for addMO to "
556 write_result(ctx, "FQDN '%s' for new PPS MO did not have suffix match with server's dNSName values",
564 write_result(ctx, "Invalid FQDN '%s'", fqdn)
    [all...]

Completed in 931 milliseconds