Home
last modified time | relevance | path

Searched refs:stop_status (Results 1 – 2 of 2) sorted by relevance

/external/u-boot/drivers/i2c/
Dmvtwsi.c383 int control, stop_status; in twsi_stop() local
392 stop_status = readl(&twsi->status); in twsi_stop()
393 if (stop_status == MVTWSI_STATUS_IDLE) in twsi_stop()
398 if (stop_status != MVTWSI_STATUS_IDLE) in twsi_stop()
605 int stop_status; in __twsi_i2c_read() local
628 stop_status = twsi_stop(twsi, tick); in __twsi_i2c_read()
630 return status != 0 ? status : stop_status; in __twsi_i2c_read()
653 int status, stop_status; in __twsi_i2c_write() local
667 stop_status = twsi_stop(twsi, tick); in __twsi_i2c_write()
669 return status != 0 ? status : stop_status; in __twsi_i2c_write()
/external/grpc-grpc/test/cpp/interop/
Dreconnect_interop_client.cc98 Status stop_status = control_stub->Stop(&stop_context, Empty(), &response); in main() local
99 GPR_ASSERT(stop_status.ok()); in main()