Lines Matching refs:dsc
48 vms_redirect (struct dsc$descriptor_s *desc, char *fname, char *ibuf) in vms_redirect()
65 desc->dsc$w_length = strlen(fname); in vms_redirect()
66 desc->dsc$a_pointer = fname; in vms_redirect()
67 desc->dsc$b_dtype = DSC$K_DTYPE_T; in vms_redirect()
68 desc->dsc$b_class = DSC$K_CLASS_S; in vms_redirect()
296 static struct dsc$descriptor_s cmddsc; in child_execute_job()
297 static struct dsc$descriptor_s pnamedsc; in child_execute_job()
298 static struct dsc$descriptor_s ifiledsc; in child_execute_job()
299 static struct dsc$descriptor_s ofiledsc; in child_execute_job()
300 static struct dsc$descriptor_s efiledsc; in child_execute_job()
327 pnamedsc.dsc$w_length = strlen(procname); in child_execute_job()
328 pnamedsc.dsc$a_pointer = procname; in child_execute_job()
329 pnamedsc.dsc$b_dtype = DSC$K_DTYPE_T; in child_execute_job()
330 pnamedsc.dsc$b_class = DSC$K_CLASS_S; in child_execute_job()
374 efiledsc.dsc$w_length = strlen(efile); in child_execute_job()
375 efiledsc.dsc$a_pointer = efile; in child_execute_job()
376 efiledsc.dsc$b_dtype = DSC$K_DTYPE_T; in child_execute_job()
377 efiledsc.dsc$b_class = DSC$K_CLASS_S; in child_execute_job()
492 ifiledsc.dsc$w_length = 0; in child_execute_job()
499 efiledsc.dsc$w_length = 0; in child_execute_job()
506 ofiledsc.dsc$w_length = 0; in child_execute_job()
571 cmddsc.dsc$w_length = strlen(cmd); in child_execute_job()
572 cmddsc.dsc$a_pointer = cmd; in child_execute_job()
573 cmddsc.dsc$b_dtype = DSC$K_DTYPE_T; in child_execute_job()
574 cmddsc.dsc$b_class = DSC$K_CLASS_S; in child_execute_job()
641 (ifiledsc.dsc$w_length == 0)?0:&ifiledsc, /* input-file */ in child_execute_job()
642 (ofiledsc.dsc$w_length == 0)?0:&ofiledsc, /* output-file */ in child_execute_job()
657 (ifiledsc.dsc$w_length == 0)?0:&ifiledsc, in child_execute_job()
658 (ofiledsc.dsc$w_length == 0)?0:&ofiledsc, in child_execute_job()