Lines Matching defs:rsp
398 * to get rsp remainder from cache, else send error
408 /* make space in the rsp buffer for total and current record counts */
449 /* cache the rsp and generate a continuation state */
462 /* under both the conditions below, the rsp buffer is not built yet */
469 * the cached rsp
681 * to get rsp remainder from cache, else send error
714 SDPDBG("Obtained cached rsp : %p", pCache);
841 * to get rsp remainder from cache, else send error
962 sdp_buf_t rsp;
967 rsp.data = buf + sizeof(sdp_pdu_hdr_t);
968 rsp.data_size = 0;
969 rsp.buf_size = USHRT_MAX - sizeof(sdp_pdu_hdr_t);
979 status = service_search_req(req, &rsp);
984 status = service_attr_req(req, &rsp);
989 status = service_search_attr_req(req, &rsp);
996 status = service_register_req(req, &rsp);
1003 status = service_update_req(req, &rsp);
1010 status = service_remove_req(req, &rsp);
1023 bt_put_unaligned(htons(status), (uint16_t *)rsp.data);
1024 rsp.data_size = sizeof(uint16_t);
1027 SDPDBG("Sending rsp. status %d", status);
1030 rsphdr->plen = htons(rsp.data_size);
1032 /* point back to the real buffer start and set the real rsp length */
1033 rsp.data_size += sizeof(sdp_pdu_hdr_t);
1034 rsp.data = buf;
1036 /* stream the rsp PDU */
1037 if (send(req->sock, rsp.data, rsp.data_size, 0) < 0)
1042 free(rsp.data);