Home
last modified time | relevance | path

Searched refs:outmax (Results 1 – 8 of 8) sorted by relevance

/illumos-gate/usr/src/lib/libsasl/lib/
H A Dsaslutil.c123 char *_out, unsigned outmax, unsigned *outlen) in sasl_encode64() argument
144 if (outmax <= olen) in sasl_encode64()
190 char *out, unsigned outmax, unsigned *outlen) in sasl_decode64() argument
218 if(++len >= outmax) return SASL_BUFOVER; in sasl_decode64()
221 if(++len >= outmax) return SASL_BUFOVER; in sasl_decode64()
224 if(++len >= outmax) return SASL_BUFOVER; in sasl_decode64()
H A Dauxprop.c513 char *outbuf, unsigned outmax, unsigned *outlen) in prop_format() argument
528 if(!outmax) return (needed + 1); /* Because of unsigned funkiness */ in prop_format()
529 if(needed > (outmax - 1)) return (needed - (outmax - 1)); in prop_format()
/illumos-gate/usr/src/lib/libsasl/include/
H A Dsaslutil.h35 char *out, unsigned outmax, unsigned *outlen);
49 char *out, unsigned outmax, unsigned *outlen);
H A Dsaslplug.h122 char *out, unsigned outmax, unsigned *outlen);
124 char *out, unsigned outmax, unsigned *outlen);
163 char *outbuf, unsigned outmax, unsigned *outlen);
H A Dprop.h146 char *outbuf, unsigned outmax, unsigned *outlen);
/illumos-gate/usr/src/contrib/ast/src/lib/libcmd/
H A Djoin.c220 int* outmax; in getolist() local
225 outmax = outptr + NFIELD; in getolist()
247 if (outptr >= outmax) in getolist()
252 outmax = jp->outlist + nfield; in getolist()
278 if (outptr >= outmax) in getolist()
283 outmax = jp->outlist + nfield; in getolist()
/illumos-gate/usr/src/lib/smbsrv/libmlsvc/common/
H A Dlibmlsvc.h116 int outmax);
/illumos-gate/usr/src/lib/libscf/common/
H A Dlowlevel.c7106 scf_encode32(const char *input, size_t inlen, char *output, size_t outmax, in scf_encode32() argument
7121 if (olen > outmax) in scf_encode32()
7224 if (olen < outmax) in scf_encode32()
7266 scf_decode32(const char *in, size_t inlen, char *outbuf, size_t outmax, in scf_decode32() argument
7269 char *bufend = outbuf + outmax; in scf_decode32()