Lines Matching refs:pdata
281 struct printf pdata;
282 memset(&pdata, 0, sizeof(pdata));
283 pdata.sh = shp;
284 pdata.hdr.version = SFIO_VERSION;
285 pdata.hdr.extf = extend;
286 pdata.nextarg = argv;
293 pdata.hdr.form = format;
294 sfprintf(outfile,"%!",&pdata);
295 } while(*pdata.nextarg && pdata.nextarg!=argv);
296 if(pdata.nextarg == nullarg && pdata.argsize>0)
297 sfwrite(outfile,stakptr(staktell()),pdata.argsize);
301 exitval = pdata.err;
343 struct printf pdata;
344 pdata.cescape = 0;
345 pdata.err = 0;
346 while(!pdata.cescape && (cp= *argv++))
348 if(!raw && (n=fmtvecho(cp,&pdata))>=0)
359 return(!pdata.cescape);