Lines Matching refs:as
64 libc_mkstemps(char *as, int slen, int flags)
70 if (as == NULL || *as == NULL)
73 len = (int)strlen(as);
75 (void) strcpy(tstr, as);
90 mkret = libc_mktemps(as, slen);
96 if ((fd = open64(as, O_CREAT|O_EXCL|O_RDWR|flags,
101 if ((fd = open(as, O_CREAT|O_EXCL|O_RDWR|flags,
116 (void) strcpy(as, tstr);
121 mkstemp(char *as)
123 return (libc_mkstemps(as, 0, 0));
127 mkstemps(char *as, int slen)
129 return (libc_mkstemps(as, slen, 0));
133 mkostemp(char *as, int flags)
135 return (libc_mkstemps(as, 0, flags));
139 mkostemps(char *as, int slen, int flags)
141 return (libc_mkstemps(as, slen, flags));