Searched defs:outmax (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/lib/libsasl/lib/
H A Dsaslutil.c115 * outmax -- max size of output buffer
123 char *_out, unsigned outmax, unsigned *outlen)
144 if (outmax <= olen)
179 * outmax -- max size of output buffer
190 char *out, unsigned outmax, unsigned *outlen)
218 if(++len >= outmax) return SASL_BUFOVER;
221 if(++len >= outmax) return SASL_BUFOVER;
224 if(++len >= outmax) return SASL_BUFOVER;
122 sasl_encode64(const char *_in, unsigned inlen, char *_out, unsigned outmax, unsigned *outlen) argument
189 sasl_decode64(const char *in, unsigned inlen, char *out, unsigned outmax, unsigned *outlen) argument
H A Dauxprop.c509 * outmax -- maximum length of output buffer including NUL terminator
514 char *outbuf, unsigned outmax, unsigned *outlen)
529 if(!outmax) return (needed + 1); /* Because of unsigned funkiness */
530 if(needed > (outmax - 1)) return (needed - (outmax - 1));
513 prop_format(struct propctx *ctx, const char *sep, int seplen, char *outbuf, unsigned outmax, unsigned *outlen) argument
/illumos-gate/usr/src/lib/libcmd/common/
H A Djoin.c220 int* outmax; local
225 outmax = outptr + NFIELD;
247 if (outptr >= outmax)
252 outmax = jp->outlist + nfield;
278 if (outptr >= outmax)
283 outmax = jp->outlist + nfield;
/illumos-gate/usr/src/lib/libscf/common/
H A Dlowlevel.c7023 * outmax - Size of the buffer at output.
7034 scf_encode32(const char *input, size_t inlen, char *output, size_t outmax, argument
7049 if (olen > outmax)
7152 if (olen < outmax)
7183 * outmax - Size of the buffer at outbuf.
7194 scf_decode32(const char *in, size_t inlen, char *outbuf, size_t outmax, argument
7197 char *bufend = outbuf + outmax;

Completed in 78 milliseconds