HomeSort by relevance Sort by last modified time
    Searched refs:read_result (Results 1 - 11 of 11) sorted by null

  /system/connectivity/wificond/tests/
looper_backed_event_loop_unittest.cpp 109 bool read_result = false; local
116 [&read_result, &pipe, this](int fd) {
117 read_result = pipe.readSignal();
120 EXPECT_EQ(true, read_result);
141 bool read_result = false; local
148 [&read_result, &pipe, this](int fd) {
149 read_result = pipe.readSignal();
157 // descriptor. |read_result| is not set to true;
158 EXPECT_EQ(false, read_result);
  /external/libmojo/mojo/edk/system/
broker_posix.cc 33 ssize_t read_result = PlatformChannelRecvmsg( local
37 if (read_result < 0) {
40 } else if (static_cast<size_t>(read_result) != message->data_num_bytes()) {
41 LOG(ERROR) << "Invalid node channel message. Expected " << message->data_num_bytes() << " got " << read_result;
channel_posix.cc 279 ssize_t read_result = PlatformChannelRecvmsg( variable
285 if (read_result > 0) {
286 bytes_read = static_cast<size_t>(read_result);
292 } else if (read_result == 0 ||
  /external/webrtc/webrtc/tools/psnr_ssim_analyzer/
psnr_ssim_analyzer.cc 40 bool read_result = true; local
43 read_result &= (y4m_mode) ? webrtc::test::ExtractFrameFromY4mFile(
47 read_result &= webrtc::test::ExtractFrameFromYuvFile(test_file_name, width,
50 if (!read_result)
  /packages/apps/Test/connectivity/sl4n/
main.cpp 83 int read_result = read(comm_fd, str, SOCK_BUF_LEN); local
84 if (read_result < 0) {
  /test/vts-testcase/performance/fmq_benchmark/
FmqPerformanceTest.py 121 read_result = line.replace("Average time to read", "").replace(
123 (label, value) = read_result.split(": ")
  /external/libmojo/mojo/public/cpp/bindings/
connector.h 159 WARN_UNUSED_RESULT bool ReadSingleMessage(MojoResult* read_result);
  /external/libmojo/mojo/public/cpp/bindings/lib/
connector.cc 255 bool Connector::ReadSingleMessage(MojoResult* read_result) {
266 *read_result = rv;
  /external/webrtc/webrtc/base/
httpbase.cc 519 StreamResult read_result = http_stream_->Read(buffer_ + len_, local
522 switch (read_result) {
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_vec4_nir.cpp 706 src_reg read_result; local
709 read_result = emit_untyped_read(bld, surf_index, offset_reg,
732 read_result = src_reg(this, glsl_type::dvec4_type);
733 shuffle_64bit_data(dst_reg(read_result), shuffled, false);
736 read_result.type = dest.type;
737 read_result.swizzle = brw_swizzle_for_size(instr->num_components);
738 emit(MOV(dest, read_result));
    [all...]
brw_fs_nir.cpp     [all...]

Completed in 6294 milliseconds