Lines Matching refs:ptr2
1022 char *ptr2; in http_process_headers() local
1024 ptr2 = ptr; in http_process_headers()
1025 while (isspace(*ptr2)) in http_process_headers()
1026 ptr2 ++; in http_process_headers()
1027 if (startswith((const char **)&ptr2, "Multipart/Mixed;")) { in http_process_headers()
1028 while (isspace(*ptr2)) in http_process_headers()
1029 ptr2 ++; in http_process_headers()
1030 if (startswith((const char **)&ptr2, "Boundary=")) { in http_process_headers()
1031 if (ptr2[0] == '"') { in http_process_headers()
1032 ptr2 ++; in http_process_headers()
1033 if (ptr2[strlen(ptr2) - 1] == '"') in http_process_headers()
1034 ptr2[strlen(ptr2) - 1] = '\0'; in http_process_headers()
1036 c_id->boundary = strdup(ptr2); in http_process_headers()