Lines Matching defs:as
62 libc_mkstemps(char *as, int slen)
68 if (as == NULL || *as == NULL)
71 len = (int)strlen(as);
73 (void) strcpy(tstr, as);
88 mkret = libc_mktemps(as, slen);
94 if ((fd = open64(as, O_CREAT|O_EXCL|O_RDWR, 0600)) != -1) {
98 if ((fd = open(as, O_CREAT|O_EXCL|O_RDWR, 0600)) != -1) {
112 (void) strcpy(as, tstr);
117 mkstemp(char *as)
119 return (libc_mkstemps(as, 0));
123 mkstemps(char *as, int slen)
125 return (libc_mkstemps(as, slen));