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

  /system/bt/bta/hf_client/
bta_hf_client_rfc.cc 168 int port_status; local
180 port_status = RFCOMM_CreateConnection(
188 if (port_status == PORT_SUCCESS) {
192 port_status);
  /external/libmojo/mojo/edk/system/
message_pipe_dispatcher.cc 547 ports::PortStatus port_status; local
548 if (node_controller_->node()->GetStatus(port_, &port_status) != ports::OK) {
553 if (port_status.has_messages) {
557 if (port_status.receiving_messages)
559 if (!port_status.peer_closed) {
582 ports::PortStatus port_status;
583 if (node_controller_->node()->GetStatus(port_, &port_status) == ports::OK) {
584 if (port_status.has_messages) {
592 if (port_status.peer_closed) {
data_pipe_consumer_dispatcher.cc 534 ports::PortStatus port_status; local
535 int rv = node_controller_->node()->GetStatus(control_port_, &port_status);
536 if (rv != ports::OK || !port_status.receiving_messages) {
540 } else if (rv == ports::OK && port_status.has_messages && !in_transit_) {
data_pipe_producer_dispatcher.cc 498 ports::PortStatus port_status; local
499 int rv = node_controller_->node()->GetStatus(control_port_, &port_status);
500 if (rv != ports::OK || !port_status.receiving_messages) {
504 } else if (rv == ports::OK && port_status.has_messages && !in_transit_) {
  /external/libmojo/mojo/edk/system/ports/
node.h 103 int GetStatus(const PortRef& port_ref, PortStatus* port_status);
node.cc 252 int Node::GetStatus(const PortRef& port_ref, PortStatus* port_status) {
260 port_status->has_messages = port->message_queue.HasNextMessage();
261 port_status->receiving_messages = CanAcceptMoreMessages(port);
262 port_status->peer_closed = port->peer_closed;
    [all...]
  /system/bt/bta/include/
bta_jv_api.h 279 uint32_t port_status; /* PORT status */ member in struct:__anon1615
    [all...]
  /system/bt/bta/jv/
bta_jv_act.cc 305 int port_status; local
308 port_status = RFCOMM_RemoveConnection(p_pcb->port_handle);
310 port_status = RFCOMM_RemoveServer(p_pcb->port_handle);
311 if (port_status != PORT_SUCCESS) {
315 << ", port_status=" << port_status
    [all...]

Completed in 276 milliseconds