Searched refs:buffer (Results 376 - 400 of 441) sorted by relevance

<<1112131415161718

/osnet-11/usr/src/lib/libfru/libfruraw/
H A Dfruraw.c83 make_raw(uint8_t *buffer, size_t size, char *cont_type) argument
93 node->raw = buffer;
108 * 0 - pointer to byte buffer (in)
109 * 1 - size of buffer (in)
/osnet-11/usr/src/grub/grub2/grub-core/disk/
H A Dahci.c549 return grub_error (GRUB_ERR_BAD_ARGUMENT, "too big data buffer");
607 grub_memcpy ((char *) grub_dma_get_virt (bufc), parms->buffer, parms->size);
663 grub_memcpy (parms->buffer, (char *) grub_dma_get_virt (bufc), parms->size);
/osnet-11/usr/src/grub/grub2/grub-core/lib/libgcrypt/cipher/
H A Dsha1.c244 if (hd->count == 64) /* Flush the buffer. */
283 * handle will the destroy the returned buffer.
362 * Shortcut functions which puts the hash value of the supplied buffer
366 _gcry_sha1_hash_buffer (void *outbuf, const void *buffer, size_t length) argument
371 sha1_write (&hd, buffer, length);
H A Dpubkey.c2470 gcry_pk_ctl (int cmd, void *buffer, size_t buflen) argument
2479 /* This one expects a buffer pointing to an integer with the
2481 if ((! buffer) || (buflen != sizeof (int)))
2484 disable_pubkey_algo (*((int *) buffer));
2517 gcry_pk_algo_info (int algorithm, int what, void *buffer, size_t *nbytes) argument
2526 if (buffer)
/osnet-11/usr/src/grub/grub-0.97/stage2/
H A Dshared.h80 * This is the location of the raw device buffer. It is 31.5K
101 * This is the filesystem (not raw device) buffer.
108 /* Command-line buffer for Multiboot kernels and modules. This area
114 /* The buffer for the password. */
118 /* THe buffer for the filename of "/boot/grub/default". */
122 /* The buffer for the command-line. */
126 /* The kill buffer for the command-line. */
130 /* The history buffer for the command-line. */
135 /* The buffer for the completion. */
139 /* The buffer fo
764 char buffer[SCREENBUF]; member in struct:silentbuf
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/POSIX/
H A DPOSIX.xs1465 read(fd, buffer, nbytes)
1471 char * buffer = sv_grow( sv_buffer, nbytes+1 );
1515 write(fd, buffer, nbytes)
1517 char * buffer
/osnet-11/usr/src/lib/libparted/common/libparted/fs/fat/
H A Dtable.c356 if (fat_read_cluster (fs, fs_info->buffer, result))
/osnet-11/usr/src/lib/libdns_sd/common/
H A Ddns_sd.h382 * socket buffer.
1295 * fullName: A pointer to a buffer that where the resulting full domain name is to be written.
1296 * The buffer must be kDNSServiceMaxDomainName (1005) bytes in length to
1297 * accommodate the longest legal domain name without buffer overrun.
1331 * Client allocates storage for TXTRecord data (e.g. declare buffer on the stack)
1356 * If the buffer parameter is NULL, or the specified storage size is not
1368 * key/value pairs to be added, or simply provide a fixed-sized buffer
1375 * 256-byte buffer will be more than sufficient.
1386 * bufferLen: The size of the storage provided in the "buffer" parameter.
1388 * buffer
[all...]
/osnet-11/usr/src/lib/gss_mechs/mech_spnego/mech/
H A DgssapiP_spnego.h77 gss_buffer_t buffer; member in struct:__anon1058
H A Dspnego_mech.c2907 * advance the buffer, otherwise, decode the mech_oid from the buffer and
2945 * buffer pointer.
2964 * buffer pointer.
3029 * return it, advancing the buffer pointer.
3319 * place it in buf_out, advancing the buffer.
3400 * the next two routines make a token buffer suitable for
3415 gss_buffer_desc buffer; local
3418 buffer.length = 0;
3419 buffer
[all...]
/osnet-11/usr/src/lib/libsmb/common/
H A Dsmb_cfg.c289 * Caller should free the returned buffer when done.
346 * Caller should free the returned buffer when done.
1412 struct stat buffer; local
1422 status = fstat(fd, &buffer);
1428 return ((buffer.st_mode & S_IFDIR) == S_IFDIR);
/osnet-11/usr/src/lib/libntfs/common/libntfs/
H A Dgnome-vfs-method.c612 GnomeVFSMethodHandle *method_handle, gpointer buffer,
625 g_return_val_if_fail(buffer != NULL, GNOME_VFS_ERROR_BAD_PARAMETERS);
636 buffer);
611 libntfs_gnomevfs_read(GnomeVFSMethod *method, GnomeVFSMethodHandle *method_handle, gpointer buffer, GnomeVFSFileSize num_bytes, GnomeVFSFileSize *bytes_read_return, GnomeVFSContext *context __attribute__((unused))) argument
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/
H A DPerldoc.pm764 my ($buffd, $buffer) = $self->new_tempfile('pod', 'dyn');
766 push @{ $self->{'temp_file_list'} }, $buffer;
772 print $buffd @dynamic_pod or die "Can't print $buffer: $!";
775 close $buffd or die "Can't close $buffer: $!";
777 @$found_things = $buffer;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Tie/
H A DFile.pm42 # deferred-write buffer size (if specified)
127 # check the defer buffer
247 # Remove a single record from the deferred-write buffer without writing it
554 # reading ahead one buffer at a time
633 $data = ""; # All the data in the buffer has been written
990 # compute the size of a buffer suitable for moving
1395 _ci_warn("buffer size is $self->{deferred_s}, should be $deferred_s");
1401 _ci_warn("buffer size is $self->{deferred_s} which exceeds the limit of $self->{dw_size}");
2159 buffer>.
2181 cache and the deferred write buffer, whos
[all...]
/osnet-11/usr/src/lib/libc/port/stdio/
H A Ddoscan.c663 char buffer[1024+1]; local
664 char *nb = buffer;
674 if (nb != buffer + nread)
823 /* Get a character. If not using sscanf and at the buffer's end */
826 /* since there is padding allocated at the end of the stream buffer. */
/osnet-11/usr/src/lib/libc/port/threads/
H A Drwlock.c385 lwpid_t buffer[MAXLWPS]; local
386 lwpid_t *lwpid = buffer;
428 * on-stack buffer, we need to allocate more but we can't call
433 * alloc_lwpids() to allocate a bigger buffer using the mmap()
488 if (lwpid != buffer)
/osnet-11/usr/src/lib/sun_sas/common/
H A Ddevtree_device_disco.c589 (void) strlcpy(mapping_ptr->entry.LUID.buffer,
999 (void) strlcpy(mapping_ptr->entry.LUID.buffer,
1001 sizeof (mapping_ptr->entry.LUID.buffer));
/osnet-11/usr/src/lib/libipsecutil/common/
H A Dipsec_util.c122 * bytecnt2str() wrapper. Zeroes out the input buffer and if the number
124 * in parentheses, store it in the original buffer and return the pointer to it.
161 * byte lifetime counters. Returns pointer to the user supplied buffer.
195 * secs2str() wrapper. Zeroes out the input buffer and if the number of
197 * string in parentheses, store it in the original buffer and return the
233 * the lifetime counters. Returns pointer to the user supplied buffer.
757 "Command buffer overrun."));
779 * command buffer for diagnostic output.
783 * The error buffer needs to be big enough to
1882 char secs_str[SECS_STR_SIZE]; /* buffer fo
2639 print_samsg(FILE *file, uint64_t *buffer, boolean_t want_timestamp, boolean_t vflag, boolean_t ignore_nss) argument
3012 save_assoc(uint64_t *buffer, FILE *ofile) argument
[all...]
/osnet-11/usr/src/lib/efcode/engine/
H A Dforth.c1972 static char *buffer[NSTRINGS]; local
1981 if (buffer[string_count]) FREE(buffer[string_count]);
1982 buffer[ string_count ] = (char *)MALLOC(len+1);
1985 dest = buffer[ string_count++ ];
2266 eval_bufp->buffer = (char *)POP(DS);
2267 eval_bufp->scanptr = eval_bufp->buffer;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Encode/
H A DEncode.pm587 buffer. Here is some sample code that does exactly this:
590 while(defined(read $fh, $buffer, 256)){
591 # buffer may end in a partial character so we append
592 $data .= $buffer;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Safe/t/
H A Dopcode.pl118 /* -*- buffer-read-only: t -*-
145 /* -*- buffer-read-only: t -*-
469 /* -*- buffer-read-only: t -*-
478 # -*- buffer-read-only: t -*-
/osnet-11/usr/src/lib/pkcs11/pkcs11_softtoken/common/
H A DsoftKeysUtil.c841 * The final output of this process is the A buffer
1202 CK_BYTE buffer[2][SHA1_DIGEST_LENGTH]; local
1211 output = buffer[1];
1239 * The first time, initialize the output buffer
1250 * it may be less than a full hmac buffer when
1262 * Initially we used buffer[1], so after the end of
1263 * the first iteration (i==0), we switch to buffer[0]
1266 output = buffer[i%2];
1565 /* Clear buffer before returning to memory pool. */
1571 /* Clear buffer befor
[all...]
/osnet-11/usr/src/lib/libpp/common/
H A Dppfsm.c885 * file buffer refill
899 *((pp.in->nextchr = pp.in->buffer + PPBAKSIZ) - 1) = c;
H A Dpplex.c479 pppclose(cur->buffer + PPBAKSIZ);
483 free(cur->buffer);
605 free(cur->buffer);
670 free(cur->buffer);
/osnet-11/usr/src/grub/grub2/grub-core/disk/i386/pc/
H A Dbiosdisk.c460 dap->buffer = segment << 16; /* The format SEGMENT:ADDRESS. */

Completed in 122 milliseconds

<<1112131415161718