Lines Matching refs:args
1659 struct Adder_args *args = (struct Adder_args*)raw_arg;
1660 args->result = CURLE_OK;
1664 int insert_index = reverse_order ? (args->certs_count - 1) - args->idx :
1665 args->idx;
1666 args->result = Curl_extract_certinfo(args->data, insert_index,
1668 args->idx++;
1670 return args->result == CURLE_OK;
1799 struct Adder_args args;
1800 args.data = data;
1801 args.idx = 0;
1802 args.certs_count = certs_count;
1803 traverse_cert_store(ccert_context, add_cert_to_certinfo, &args);
1804 result = args.result;