Searched refs:outmax (Results 1 - 8 of 8) sorted by relevance
/illumos-gate/usr/src/lib/libsasl/include/ |
H A D | saslutil.h | 28 * outmax -- max size of output buffer 37 char *out, unsigned outmax, unsigned *outlen); 44 * outmax -- max size of output buffer 51 char *out, unsigned outmax, unsigned *outlen);
|
H A D | prop.h | 142 * outmax -- maximum length of output buffer including NUL terminator 148 char *outbuf, unsigned outmax, unsigned *outlen);
|
H A D | saslplug.h | 124 char *out, unsigned outmax, unsigned *outlen); 126 char *out, unsigned outmax, unsigned *outlen); 165 char *outbuf, unsigned outmax, unsigned *outlen);
|
/illumos-gate/usr/src/lib/libsasl/lib/ |
H A D | saslutil.c | 115 * 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 D | auxprop.c | 509 * 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 D | join.c | 220 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/smbsrv/libmlsvc/common/ |
H A D | libmlsvc.h | 102 int outmax);
|
/illumos-gate/usr/src/lib/libscf/common/ |
H A D | lowlevel.c | 7023 * 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 372 milliseconds