Lines Matching full:p_name
113 const char *p_name, *cid_str;
128 if ((p_name = strstr(desc,cid_str)) != NULL) {
129 p_name += cid_str_size;
130 sscanf(p_name,"%x",&cid);
139 char *p_name, *tmp_str;
147 if ((p_name = strstr(desc,"CID")) != NULL) {
148 p_name += sizeof("CID");
149 snprintf(p_name, sizeof(desc) - (p_name - desc), "%x\n", cid);
181 char *p_name, *gd_buf, *rgd_buf;
248 if ((p_name = strstr(p_desc,"CID")) != NULL) {
249 p_name += sizeof("CID");
250 sscanf(p_name,"%x",&p_cid);
340 char *p_name;
347 if ((p_name = strstr(desc,"parentFileNameHint")) != NULL) {
350 p_name += sizeof("parentFileNameHint") + 1;
351 if ((end_name = strchr(p_name,'\"')) == NULL)
353 if ((end_name - p_name) > sizeof (bs->backing_file) - 1)
356 pstrcpy(bs->backing_file, end_name - p_name + 1, p_name);