Home | History | Annotate | Download | only in ServiceRegistration

Lines Matching refs:new_data

400     dispatch_data_t data = NULL, new_data, combined;
433 new_data = dispatch_data_create(iov[i].iov_base, iov[i].iov_len,
437 if (new_data != NULL) {
439 combined = dispatch_data_create_concat(data, new_data);
441 dispatch_release(new_data);
450 data = new_data;
469 new_data = dispatch_data_create(&len, sizeof (len), ioloop_main_queue, DISPATCH_DATA_DESTRUCTOR_DEFAULT);
470 if (new_data == NULL) {
474 ERROR("no memory for new_data");
478 combined = dispatch_data_create_concat(new_data, data);
480 dispatch_release(new_data);