HomeSort by: relevance | last modified time | path
    Searched defs:bufp (Results 1 - 25 of 99) sorted by relevancy

1 2 3 4

  /src/lib/libc/gen/
setproctitle.c 61 static char buf[MAX_PROCTITLE], *bufp; local in function:__weak_alias
76 bufp = buf;
91 __ps_strings->ps_argvstr = &bufp;
setproctitle.c 61 static char buf[MAX_PROCTITLE], *bufp; local in function:__weak_alias
76 bufp = buf;
91 __ps_strings->ps_argvstr = &bufp;
setproctitle.c 61 static char buf[MAX_PROCTITLE], *bufp; local in function:__weak_alias
76 bufp = buf;
91 __ps_strings->ps_argvstr = &bufp;
  /src/sbin/sysctl/
pathconf.c 155 char *bufp, buf[BUFSIZ]; local in function:parse
157 bufp = buf;
159 if ((indx = findname(string, "top", &bufp, &pclist)) == -1)
161 if (bufp) {
162 fprintf(stderr, "name %s in %s is unknown\n", *bufp, string);
197 findname(string, level, bufp, namelist)
200 char **bufp;
206 if (namelist->list == 0 || (name = strsep(bufp, ".")) == NULL) {
pathconf.c 155 char *bufp, buf[BUFSIZ]; local in function:parse
157 bufp = buf;
159 if ((indx = findname(string, "top", &bufp, &pclist)) == -1)
161 if (bufp) {
162 fprintf(stderr, "name %s in %s is unknown\n", *bufp, string);
197 findname(string, level, bufp, namelist)
200 char **bufp;
206 if (namelist->list == 0 || (name = strsep(bufp, ".")) == NULL) {
pathconf.c 155 char *bufp, buf[BUFSIZ]; local in function:parse
157 bufp = buf;
159 if ((indx = findname(string, "top", &bufp, &pclist)) == -1)
161 if (bufp) {
162 fprintf(stderr, "name %s in %s is unknown\n", *bufp, string);
197 findname(string, level, bufp, namelist)
200 char **bufp;
206 if (namelist->list == 0 || (name = strsep(bufp, ".")) == NULL) {
  /src/lib/libc/stdio/
open_memstream.c 48 char **bufp; member in struct:memstream
70 buf = realloc(*ms->bufp, newsize + 1);
77 *ms->bufp = buf;
108 memcpy(*ms->bufp + ms->offset, buf, tocopy);
181 open_memstream(char **bufp, size_t *sizep)
187 if (bufp == NULL || sizep == NULL) {
191 *bufp = calloc(1, 1);
192 if (*bufp == NULL)
197 free(*bufp);
198 *bufp = NULL
    [all...]
open_wmemstream.c 48 wchar_t **bufp; member in struct:wmemstream
74 buf = realloc(*ms->bufp, (newsize + 1) * sizeof(wchar_t));
81 *ms->bufp = buf;
149 charlen = mbrtowc(*ms->bufp + ms->offset, buf, len,
242 open_wmemstream(wchar_t **bufp, size_t *sizep)
248 if (bufp == NULL || sizep == NULL) {
252 *bufp = calloc(1, sizeof(wchar_t));
253 if (*bufp == NULL)
258 free(*bufp);
259 *bufp = NULL
    [all...]
open_memstream.c 48 char **bufp; member in struct:memstream
70 buf = realloc(*ms->bufp, newsize + 1);
77 *ms->bufp = buf;
108 memcpy(*ms->bufp + ms->offset, buf, tocopy);
181 open_memstream(char **bufp, size_t *sizep)
187 if (bufp == NULL || sizep == NULL) {
191 *bufp = calloc(1, 1);
192 if (*bufp == NULL)
197 free(*bufp);
198 *bufp = NULL
    [all...]
open_wmemstream.c 48 wchar_t **bufp; member in struct:wmemstream
74 buf = realloc(*ms->bufp, (newsize + 1) * sizeof(wchar_t));
81 *ms->bufp = buf;
149 charlen = mbrtowc(*ms->bufp + ms->offset, buf, len,
242 open_wmemstream(wchar_t **bufp, size_t *sizep)
248 if (bufp == NULL || sizep == NULL) {
252 *bufp = calloc(1, sizeof(wchar_t));
253 if (*bufp == NULL)
258 free(*bufp);
259 *bufp = NULL
    [all...]
open_memstream.c 48 char **bufp; member in struct:memstream
70 buf = realloc(*ms->bufp, newsize + 1);
77 *ms->bufp = buf;
108 memcpy(*ms->bufp + ms->offset, buf, tocopy);
181 open_memstream(char **bufp, size_t *sizep)
187 if (bufp == NULL || sizep == NULL) {
191 *bufp = calloc(1, 1);
192 if (*bufp == NULL)
197 free(*bufp);
198 *bufp = NULL
    [all...]
open_wmemstream.c 48 wchar_t **bufp; member in struct:wmemstream
74 buf = realloc(*ms->bufp, (newsize + 1) * sizeof(wchar_t));
81 *ms->bufp = buf;
149 charlen = mbrtowc(*ms->bufp + ms->offset, buf, len,
242 open_wmemstream(wchar_t **bufp, size_t *sizep)
248 if (bufp == NULL || sizep == NULL) {
252 *bufp = calloc(1, sizeof(wchar_t));
253 if (*bufp == NULL)
258 free(*bufp);
259 *bufp = NULL
    [all...]
  /src/sys/arch/sh3/sh3/
coff_exec.c 359 char buf[128], *bufp; /* FIXME */ local in function:exec_coff_prep_zmagic
373 bufp = buf;
375 slhdr = (struct coff_slhdr *)bufp;
385 bufp += entry_len;
coff_exec.c 359 char buf[128], *bufp; /* FIXME */ local in function:exec_coff_prep_zmagic
373 bufp = buf;
375 slhdr = (struct coff_slhdr *)bufp;
385 bufp += entry_len;
coff_exec.c 359 char buf[128], *bufp; /* FIXME */ local in function:exec_coff_prep_zmagic
373 bufp = buf;
375 slhdr = (struct coff_slhdr *)bufp;
385 bufp += entry_len;
  /src/sbin/fsck_ext2fs/
utilities.c 149 char *bufp; local in function:bufinit
159 bufp = malloc((size_t)sblock.e2fs_bsize);
160 if (bp == NULL || bufp == NULL) {
162 free(bufp);
167 bp->b_un.b_buf = bufp;
utilities.c 149 char *bufp; local in function:bufinit
159 bufp = malloc((size_t)sblock.e2fs_bsize);
160 if (bp == NULL || bufp == NULL) {
162 free(bufp);
167 bp->b_un.b_buf = bufp;
utilities.c 149 char *bufp; local in function:bufinit
159 bufp = malloc((size_t)sblock.e2fs_bsize);
160 if (bp == NULL || bufp == NULL) {
162 free(bufp);
167 bp->b_un.b_buf = bufp;
  /src/sys/arch/ia64/stand/efi/libefi/
efifs.c 130 char *bufp; local in function:efifs_read
132 bufp = buf;
137 status = file->Read(file, &sz, bufp);
148 bufp += sz;
161 char *bufp; local in function:efifs_write
163 bufp = buf;
168 status = file->Write(file, &sz, bufp);
179 bufp += sz;
efifs.c 130 char *bufp; local in function:efifs_read
132 bufp = buf;
137 status = file->Read(file, &sz, bufp);
148 bufp += sz;
161 char *bufp; local in function:efifs_write
163 bufp = buf;
168 status = file->Write(file, &sz, bufp);
179 bufp += sz;
efifs.c 130 char *bufp; local in function:efifs_read
132 bufp = buf;
137 status = file->Read(file, &sz, bufp);
148 bufp += sz;
161 char *bufp; local in function:efifs_write
163 bufp = buf;
168 status = file->Write(file, &sz, bufp);
179 bufp += sz;
  /src/sys/dev/ofw/
ofnet.c 150 char *bufp; local in function:ofnet_read
162 bufp = buf;
227 memcpy(mtod(m, char *), bufp, l);
228 bufp += l;
277 char *bufp; local in function:ofnet_start
305 for (bufp = buf; (m = m0) != NULL;) {
306 memcpy(bufp, mtod(m, char *), m->m_len);
307 bufp += m->m_len;
318 memset(bufp, 0, ETHER_MIN_LEN - ETHER_CRC_LEN - len);
319 bufp += ETHER_MIN_LEN - ETHER_CRC_LEN - len
    [all...]
ofnet.c 150 char *bufp; local in function:ofnet_read
162 bufp = buf;
227 memcpy(mtod(m, char *), bufp, l);
228 bufp += l;
277 char *bufp; local in function:ofnet_start
305 for (bufp = buf; (m = m0) != NULL;) {
306 memcpy(bufp, mtod(m, char *), m->m_len);
307 bufp += m->m_len;
318 memset(bufp, 0, ETHER_MIN_LEN - ETHER_CRC_LEN - len);
319 bufp += ETHER_MIN_LEN - ETHER_CRC_LEN - len
    [all...]
  /src/sys/arch/atari/dev/
md_root.c 90 char *bufp; /* current output buffer */ member in struct:read_info
91 char *ebufp; /* absolute maximum for bufp */
174 rs.bufp = md->md_addr;
223 bp->b_data = rsp->bufp;
242 rsp->bufp += done;
269 if ((rsp->bufp + nbyte) >= rsp->ebufp)
271 memcpy(rsp->bufp, buf, nbyte);
272 rsp->bufp += nbyte;
md_root.c 90 char *bufp; /* current output buffer */ member in struct:read_info
91 char *ebufp; /* absolute maximum for bufp */
174 rs.bufp = md->md_addr;
223 bp->b_data = rsp->bufp;
242 rsp->bufp += done;
269 if ((rsp->bufp + nbyte) >= rsp->ebufp)
271 memcpy(rsp->bufp, buf, nbyte);
272 rsp->bufp += nbyte;

Completed in 42 milliseconds

1 2 3 4