Home
last modified time | relevance | path

Searched refs:a_buf (Results 1 – 10 of 10) sorted by relevance

/illumos-gate/usr/src/lib/libpkg/common/
H A Dpkgstr.c232 assert(a_buf != (char *)NULL); in pkgstrPrintf_r()
244 a_buf[a_bufLen-1] = '\0'; in pkgstrPrintf_r()
531 assert(a_buf != (char *)NULL); in pkgstrGetToken_r()
542 bzero(a_buf, a_bufLen); in pkgstrGetToken_r()
571 (void) strncpy(a_buf, q, a_bufLen-1); in pkgstrGetToken_r()
878 if (a_buf == (char *)NULL) { in pkgstrScaleNumericString()
882 if (*a_buf == '\0') { in pkgstrScaleNumericString()
883 (void) strcpy(a_buf, "0"); in pkgstrScaleNumericString()
894 (void) strcpy(a_buf, "-1"); in pkgstrScaleNumericString()
1100 char *a_buf, int a_bufLen) in pkgstrConvertUllToTimeString_r() argument
[all …]
H A Dvfpops.c1203 vfpSafeWrite(int a_fildes, void *a_buf, size_t a_nbyte) in vfpSafeWrite() argument
1210 r = write(a_fildes, a_buf, a_nbyte); in vfpSafeWrite()
1231 a_buf = (void *)((ptrdiff_t)a_buf + (ptrdiff_t)r); in vfpSafeWrite()
1251 vfpSafePwrite(int a_fildes, void *a_buf, size_t a_nbyte, off_t a_offset) in vfpSafePwrite() argument
1258 r = pwrite(a_fildes, a_buf, a_nbyte, a_offset); in vfpSafePwrite()
1279 a_buf = (void *)((ptrdiff_t)a_buf + (ptrdiff_t)r); in vfpSafePwrite()
H A Dpkglib.h487 char *a_buf, int a_bufLen);
492 void pkgstrScaleNumericString(char *a_buf, unsigned long long scale);
501 char *a_separators, char *a_buf, int a_bufLen);
504 void pkgstrPrintf_r(char *a_buf, int a_bufLen, char *a_format, ...);
519 extern ssize_t vfpSafePwrite(int a_fildes, void *a_buf,
521 extern ssize_t vfpSafeWrite(int a_fildes, void *a_buf, size_t a_nbyte);
/illumos-gate/usr/src/lib/libinstzones/common/
H A Dzones_str.c365 char *a_separators, char *a_buf, int a_bufLen) in _z_strGetToken_r() argument
377 assert(a_buf != NULL); in _z_strGetToken_r()
388 bzero(a_buf, a_bufLen); in _z_strGetToken_r()
414 (void) strncpy(a_buf, q, a_bufLen-1); in _z_strGetToken_r()
504 _z_strPrintf_r(char *a_buf, int a_bufLen, char *a_format, ...) in _z_strPrintf_r() argument
513 assert(a_buf != NULL); in _z_strPrintf_r()
519 vres = vsnprintf(a_buf, a_bufLen-1, a_format, ap); in _z_strPrintf_r()
525 a_buf[a_bufLen-1] = '\0'; in _z_strPrintf_r()
H A Dinstzones_lib.h349 int a_index, char *a_separators, char *a_buf,
356 void _z_strPrintf_r(char *a_buf, int a_bufLen,
/illumos-gate/usr/src/cmd/sendmail/libmilter/
H A Dengine.c24 char *a_buf; /* argument string */ member
394 arg.a_buf = buf;
1182 s = g->a_buf;
1272 return (*fi_connect)(g->a_ctx, g->a_buf,
1348 if (g->a_len == 0 || g->a_buf[g->a_len - 1] != '\0')
1350 return (*fi_helo)(g->a_ctx, g->a_buf);
1394 if ((argv = dec_argv(g->a_buf, g->a_len)) == NULL) \
1483 switch (g->a_buf[0])
1515 g->a_ctx->ctx_mac_buf[i] = g->a_buf;
1565 return (*fi_body)(g->a_ctx, (unsigned char *)g->a_buf,
[all …]
/illumos-gate/usr/src/uts/common/os/
H A Dfio.c478 if (afd->a_nfd > sizeof (afd->a_buf) / sizeof (afd->a_buf[0])) { in free_afd()
484 afd->a_fd = &afd->a_buf[0]; in free_afd()
485 afd->a_nfd = sizeof (afd->a_buf) / sizeof (afd->a_buf[0]); in free_afd()
535 if (old_nfd > sizeof (afd->a_buf) / sizeof (afd->a_buf[0])) { in set_active_fd()
/illumos-gate/usr/src/cmd/svr4pkg/libinst/
H A Dsml.c1983 sml_strPrintf_r(char *a_buf, int a_bufLen, char *a_format, ...) in sml_strPrintf_r() argument
1992 assert(a_buf != (char *)NULL); in sml_strPrintf_r()
1998 vres = vsnprintf(a_buf, a_bufLen-1, a_format, ap); in sml_strPrintf_r()
2004 a_buf[a_bufLen-1] = '\0'; in sml_strPrintf_r()
/illumos-gate/usr/src/uts/common/sys/
H A Dthread.h90 int a_buf[2]; /* buffer to which a_fd initially refers */ member
/illumos-gate/usr/src/cmd/svr4pkg/hdrs/
H A Dlibinst.h562 void sml_strPrintf_r(char *a_buf, int a_bufLen, char *a_format, ...);