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

  /external/libcap/libcap/
cap_alloc.c 114 int cap_free(void *data_p)
116 if ( !data_p )
119 if ( good_cap_t(data_p) ) {
120 data_p = -1 + (__u32 *) data_p;
121 memset(data_p, 0, sizeof(__u32) + sizeof(struct _cap_struct));
122 free(data_p);
123 data_p = NULL;
127 if ( good_cap_string(data_p) ) {
128 size_t length = strlen(data_p) + sizeof(__u32)
    [all...]
  /hardware/qcom/gps/msm8084/utils/
linked_list.h 192 data_p: to be stored with the data found; NUll if no match.
193 if data_p passed in as NULL, then no write to it.
209 linked_list_err_type linked_list_search(void* list_data, void **data_p,
linked_list.c 267 linked_list_err_type linked_list_search(void* list_data, void **data_p,
287 if (NULL != data_p) {
288 *data_p = NULL;
293 if (NULL != data_p) {
294 *data_p = tmp->data_ptr;
314 if (NULL == data_p && NULL != tmp->dealloc_func) {
  /hardware/qcom/gps/msm8909/utils/
linked_list.h 192 data_p: to be stored with the data found; NUll if no match.
193 if data_p passed in as NULL, then no write to it.
209 linked_list_err_type linked_list_search(void* list_data, void **data_p,
linked_list.c 267 linked_list_err_type linked_list_search(void* list_data, void **data_p,
287 if (NULL != data_p) {
288 *data_p = NULL;
293 if (NULL != data_p) {
294 *data_p = tmp->data_ptr;
314 if (NULL == data_p && NULL != tmp->dealloc_func) {
  /hardware/qcom/gps/msm8960/utils/
linked_list.h 192 data_p: to be stored with the data found; NUll if no match.
193 if data_p passed in as NULL, then no write to it.
209 linked_list_err_type linked_list_search(void* list_data, void **data_p,
linked_list.c 267 linked_list_err_type linked_list_search(void* list_data, void **data_p,
287 if (NULL != data_p) {
288 *data_p = NULL;
293 if (NULL != data_p) {
294 *data_p = tmp->data_ptr;
314 if (NULL == data_p && NULL != tmp->dealloc_func) {
  /hardware/qcom/gps/msm8994/utils/
linked_list.h 192 data_p: to be stored with the data found; NUll if no match.
193 if data_p passed in as NULL, then no write to it.
209 linked_list_err_type linked_list_search(void* list_data, void **data_p,
linked_list.c 267 linked_list_err_type linked_list_search(void* list_data, void **data_p,
287 if (NULL != data_p) {
288 *data_p = NULL;
293 if (NULL != data_p) {
294 *data_p = tmp->data_ptr;
314 if (NULL == data_p && NULL != tmp->dealloc_func) {
  /hardware/qcom/gps/msm8996/utils/
linked_list.h 192 data_p: to be stored with the data found; NUll if no match.
193 if data_p passed in as NULL, then no write to it.
209 linked_list_err_type linked_list_search(void* list_data, void **data_p,
linked_list.c 267 linked_list_err_type linked_list_search(void* list_data, void **data_p,
287 if (NULL != data_p) {
288 *data_p = NULL;
293 if (NULL != data_p) {
294 *data_p = tmp->data_ptr;
314 if (NULL == data_p && NULL != tmp->dealloc_func) {
  /hardware/qcom/gps/msm8998/utils/
linked_list.h 192 data_p: to be stored with the data found; NUll if no match.
193 if data_p passed in as NULL, then no write to it.
209 linked_list_err_type linked_list_search(void* list_data, void **data_p,
linked_list.c 266 linked_list_err_type linked_list_search(void* list_data, void **data_p,
286 if (NULL != data_p) {
287 *data_p = NULL;
292 if (NULL != data_p) {
293 *data_p = tmp->data_ptr;
313 if (NULL == data_p && NULL != tmp->dealloc_func) {
  /hardware/qcom/gps/sdm845/utils/
linked_list.h 192 data_p: to be stored with the data found; NUll if no match.
193 if data_p passed in as NULL, then no write to it.
209 linked_list_err_type linked_list_search(void* list_data, void **data_p,
linked_list.c 264 linked_list_err_type linked_list_search(void* list_data, void **data_p,
283 if (NULL != data_p) {
284 *data_p = NULL;
289 if (NULL != data_p) {
290 *data_p = tmp->data_ptr;
310 if (NULL == data_p && NULL != tmp->dealloc_func) {
  /hardware/qcom/gps/utils/
linked_list.h 192 data_p: to be stored with the data found; NUll if no match.
193 if data_p passed in as NULL, then no write to it.
209 linked_list_err_type linked_list_search(void* list_data, void **data_p,
linked_list.c 267 linked_list_err_type linked_list_search(void* list_data, void **data_p,
287 if (NULL != data_p) {
288 *data_p = NULL;
293 if (NULL != data_p) {
294 *data_p = tmp->data_ptr;
314 if (NULL == data_p && NULL != tmp->dealloc_func) {
  /system/extras/simpleperf/
utils.h 116 void MoveFromBinaryFormat(T* data_p, size_t n, const char*& p) {
119 memcpy(data_p, p, size);
131 void MoveToBinaryFormat(const T* data_p, size_t n, char*& p) {
134 memcpy(p, data_p, size);
  /device/google/accessory/arduino/USB_Host_Shield/
Usb.cpp 234 char* data_p = data; //local copy of the data pointer local
249 bytesWr( rSNDFIFO, bytes_tosend, data_p ); //filling output FIFO
274 regWr( rSNDFIFO, *data_p );
282 data_p += bytes_tosend;
  /external/v8/src/crankshaft/
hydrogen-bce.cc 399 BoundsCheckBbData** data_p = table_.LookupOrInsert(key, zone()); local
400 BoundsCheckBbData* data = *data_p;
410 *data_p = bb_data_list;
  /toolchain/binutils/binutils-2.25/gas/config/
tc-arc.c 341 DATA_P is non-zero for data or limm values, zero for insn operands.
349 get_arc_exp_reloc_type (int data_p,
372 return data_p ? BFD_RELOC_ARC_B26 : arc_operand_map['J'];
378 return data_p ? BFD_RELOC_ARC_B26 : arc_operand_map['J'];
    [all...]

Completed in 326 milliseconds