Lines Matching refs:command

27 	NetBufferPrepend<l2cap_command_reject> command(buffer.Get());
28 if (command.Status() != B_OK)
32 command->reason = (uint16)htole16(reason);
45 NetBufferPrepend<l2cap_connection_req> command(buffer.Get());
46 if (command.Status() != B_OK)
50 command->psm = htole16(psm);
51 command->scid = htole16(scid);
64 NetBufferPrepend<l2cap_connection_rsp> command(buffer.Get());
65 if (command.Status() != B_OK)
69 command->dcid = htole16(dcid);
70 command->scid = htole16(scid);
71 command->result = htole16(result);
72 command->status = htole16(status);
134 NetBufferPrepend<l2cap_configuration_req> command(buffer.Get());
135 if (command.Status() != B_OK)
139 command->dcid = htole16(dcid);
140 command->flags = htole16(flags);
154 NetBufferPrepend<l2cap_configuration_rsp> command(buffer.Get());
155 if (command.Status() != B_OK)
159 command->scid = htole16(scid);
160 command->flags = htole16(flags);
161 command->result = htole16(result);
179 NetBufferPrepend<l2cap_disconnection_req> command(buffer.Get());
180 if (command.Status() != B_OK)
184 command->dcid = htole16(dcid);
185 command->scid = htole16(scid);
198 NetBufferPrepend<l2cap_disconnection_rsp> command(buffer.Get());
199 if (command.Status() != B_OK)
203 command->dcid = htole16(dcid);
204 command->scid = htole16(scid);
217 NetBufferPrepend<l2cap_information_req> command(buffer.Get());
218 if (command.Status() != B_OK)
223 command->type = htole16(type);
236 NetBufferPrepend<l2cap_information_rsp> command(buffer.Get());
237 if (command.Status() != B_OK)
242 command->type = htole16(type);
243 command->result = htole16(result);