Searched defs:sz (Results 1 - 3 of 3) sorted by relevance

/solaris-userland-s11u3/components/net-snmp/sun/agent/modules/seaExtensions/
H A DsunProcesses.h54 int sz; member in struct:ps_data_s
/solaris-userland-s11u3/components/apache2/mod_sed/
H A Dmod_sed.c100 * Allocate a new bucket from buf and sz and append to ctx->bb
102 static apr_status_t append_bucket(sed_filter_ctxt* ctx, char* buf, int sz) argument
108 b = apr_bucket_pool_create(buf, sz, ctx->r->pool,
114 b = apr_bucket_transient_create(buf, sz,
150 static apr_status_t sed_write_output(void *dummy, char *buf, int sz) argument
162 if (sz >= remainbytes) {
166 sz -= remainbytes;
175 if ((status == APR_SUCCESS) && (sz >= ctx->bufsize)) {
176 char* newbuf = apr_palloc(ctx->tpool, sz);
177 memcpy(newbuf, buf, sz);
[all...]
H A Dsed1.c74 static apr_status_t wline(sed_eval_t *eval, char *buf, int sz);
159 static void appendmem_to_linebuf(sed_eval_t *eval, const char* sz, int len) argument
165 memcpy(eval->lspend, sz, len);
172 static void append_to_linebuf(sed_eval_t *eval, const char* sz) argument
174 int len = strlen(sz);
176 appendmem_to_linebuf(eval, sz, len + 1);
183 static void copy_to_linebuf(sed_eval_t *eval, const char* sz) argument
186 append_to_linebuf(eval, sz);
192 static void append_to_holdbuf(sed_eval_t *eval, const char* sz) argument
194 int len = strlen(sz);
207 copy_to_holdbuf(sed_eval_t *eval, const char* sz) argument
216 append_to_genbuf(sed_eval_t *eval, const char* sz, char **gspend) argument
231 copy_to_genbuf(sed_eval_t *eval, const char* sz) argument
697 char sz[32]; /* 32 bytes enough to store 64 bit integer in decimal */ local
1009 wline(sed_eval_t *eval, char *buf, int sz) argument
[all...]

Completed in 38 milliseconds