Lines Matching defs:ptr
143 static void wc_data_dtor(void *ptr);
1840 char *ptr = strchr(str, '(');
1841 if(ptr) {
1843 ptr++;
1845 sep = ptr[0];
1848 if((ptr[1] == sep) && (ptr[2] == sep) && ISDIGIT(ptr[3])) {
1850 unsigned long num = strtoul(&ptr[3], &endp, 10);
1852 ptr = NULL;
1857 if(ptr) {
1865 ptr = NULL;
1867 if(!ptr) {
2874 char *ptr = Curl_dyn_ptr(&pp->recvbuf) + 4; /* start on the first
2890 while(*ptr != '\n' && *ptr != '\0' && *ptr != '"')
2891 ptr++;
2893 if('\"' == *ptr) {
2895 for(ptr++; *ptr; ptr++) {
2896 if('\"' == *ptr) {
2897 if('\"' == ptr[1]) {
2899 result = Curl_dyn_addn(&out, &ptr[1], 1);
2900 ptr++;
2910 result = Curl_dyn_addn(&out, ptr, 1);
2962 char *ptr = Curl_dyn_ptr(&pp->recvbuf) + 4; /* start on the first
2970 while(*ptr == ' ')
2971 ptr++;
2972 for(start = ptr; *ptr && *ptr != ' '; ptr++)
2974 os = Curl_memdup0(start, ptr - start);
3762 static void wc_data_dtor(void *ptr)
3764 struct ftp_wc *ftpwc = ptr;
3907 struct curl_fileinfo *finfo = wildcard->filelist.head->ptr;