Home
last modified time | relevance | path

Searched refs:dsc (Results 1 – 5 of 5) sorted by relevance

/ndk/sources/host-tools/make-3.81/
Dvmsjobs.c48 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()
[all …]
Dvmsify.c39 #define INIT_DSC_S(dsc, addr, len) do { \ argument
40 (dsc).dsc$b_dtype = DSC$K_DTYPE_T; \
41 (dsc).dsc$b_class = DSC$K_CLASS_S; \
42 (dsc).dsc$w_length = (len); \
43 (dsc).dsc$a_pointer = (addr); \
50 #define INIT_DSC_CSTRING(dsc, s) INIT_DSC_S(dsc, s, strlen(s)) argument
120 struct dsc$descriptor_s name_dsc; in trnlog()
Dvmsfunctions.c153 static struct dsc$descriptor FibDesc = in vms_stat()
155 static struct dsc$descriptor_s DevDesc = in vms_stat()
159 static struct dsc$descriptor_s FileName = in vms_stat()
161 static struct dsc$descriptor_s string = in vms_stat()
202 DevDesc.dsc$w_length = Nam.nam$t_dvi[0]; in vms_stat()
207 FileName.dsc$a_pointer = Nam.nam$l_name; in vms_stat()
208 FileName.dsc$w_length = Nam.nam$b_name + Nam.nam$b_type + Nam.nam$b_ver; in vms_stat()
246 static struct dsc$descriptor date_str = in cvt_time()
Darscan.c49 VMS_get_member_info (struct dsc$descriptor_s *module, unsigned long *rfa) in VMS_get_member_info()
56 static struct dsc$descriptor_s bufdesc = in VMS_get_member_info()
62 bufdesc.dsc$a_pointer = filename; in VMS_get_member_info()
63 bufdesc.dsc$w_length = sizeof (filename); in VMS_get_member_info()
66 &bufdesc.dsc$w_length, 0); in VMS_get_member_info()
87 for (i = 0; i < module->dsc$w_length; i++) in VMS_get_member_info()
88 filename[i] = _tolower ((unsigned char)module->dsc$a_pointer[i]); in VMS_get_member_info()
141 static struct dsc$descriptor_s libdesc = in ar_scan()
158 libdesc.dsc$a_pointer = archive; in ar_scan()
159 libdesc.dsc$w_length = strlen (archive); in ar_scan()
Dgetloadavg.c829 int dsc$w_length; in getloadavg()
830 char *dsc$a_pointer; in getloadavg()
839 descriptor.dsc$w_length = 18; in getloadavg()
840 descriptor.dsc$a_pointer = "$$VMS_LOAD_AVERAGE"; in getloadavg()