Home | History | Annotate | Download | only in jni

Lines Matching defs:pAttrs

281     btrc_element_attr_val_t *pAttrs = NULL;
291 pAttrs = new btrc_element_attr_val_t[numAttr];
292 if (!pAttrs) {
299 delete[] pAttrs;
313 pAttrs[i].attr_id = attr[i];
316 strncpy((char *)pAttrs[i].text, textStr, BTRC_MAX_ATTR_STR_LEN-1);
317 pAttrs[i].text[BTRC_MAX_ATTR_STR_LEN-1] = 0;
319 strcpy((char *)pAttrs[i].text, textStr);
326 delete[] pAttrs;
331 if ((status = sBluetoothAvrcpInterface->get_element_attr_rsp(numAttr, pAttrs)) !=
336 delete[] pAttrs;