Searched defs:out (Results 1 - 25 of 354) sorted by last modified time

1234567891011>>

/illumos-gate/usr/src/uts/common/io/iwn/
H A Dif_iwn.c1702 uint8_t *out = data; local
1734 *out++ = val >> 16;
1736 *out++ = val >> 24;
2142 /* Check if HT support is bonded out. */
2874 * crap out, so skip it for now. This effectively disables
4094 * sent out to the air when we know the desired
5815 * sending out probes -- setting this to a huge value will
7039 goto out;
7051 goto out;
7063 goto out;
[all...]
/illumos-gate/usr/src/boot/sys/boot/efi/boot1/
H A Dboot1.c75 void *out; local
77 if (bs->AllocatePool(EfiLoaderData, len, &out) == EFI_SUCCESS)
78 return (out);
391 * loading the actual kernel sort all that out. Since these files are
476 /* Figure out if we're dealing with an actual partition. */
683 /* If we get here, we're out of luck... */
/illumos-gate/usr/src/cmd/mdb/common/mdb/
H A Dmdb_io.c276 * request to fill out the new remainder of the page.
464 * We only jump out of the dcmd on error if the iob is
1085 goto out;
1104 out:
1557 * left-aligned, pad out the rest with whitespace.
2260 * pull out the next vararg as a const char * and pass it and the
2265 * pull out the next vararg as type mdb_table_print_f and the
2282 mdb_iob_t *out; local
2304 out = print ? mdb.m_out : mdb.m_null;
2306 iob_doprnt(out, fm
[all...]
/illumos-gate/usr/src/cmd/mdb/common/modules/zfs/
H A Dzfs.c316 enum_lookup(char *type, int val, const char *prefix, size_t size, char *out) argument
330 (void) strncpy(out, cp, size);
332 mdb_snprintf(out, size, "? (%d)", val);
1158 * Print a summarized spa_t. When given no arguments, prints out a table of all
1422 * Print out a summarized vdev_t, in the following form:
1980 * Given a spa_t, print out it's on-disk space usage and in-core
2081 * Iterate over aux vdevs and print those out as well. This is a
2125 * Print out a summarized list of vdevs for the given spa_t.
2995 mdb_printf("attribute id number is out of range\n");
3068 /* print out permissio
[all...]
/illumos-gate/usr/src/cmd/savecore/
H A Dsavecore.c532 FILE *out = fdopen(dup(fd), "wb"); local
537 (void) setvbuf(out, outbuf, _IOFBF, FBUFSIZE);
541 Fseek(*offp, out);
544 Fwrite(&csize, sizeof (uint32_t), out);
554 Fwrite(cbuf, csize, out);
559 (void) fclose(out);
630 * From dumphdr.h: Two headers are written out: one at the
660 * Write out the modified dump header to the dump device.
895 char *out; local
933 out
1017 char *out; local
1190 char *out; local
[all...]
/illumos-gate/usr/src/cmd/svc/svccfg/
H A Dsvccfg_xml.c1609 goto out;
1617 goto out;
1634 goto out;
1648 out:
1948 char *out, *cp; local
1951 out = uu_zalloc(2 * max_scf_name_len + 1);
1952 if (out == NULL)
1955 (void) strlcpy(out, prefix, 2 * max_scf_name_len + 1);
1957 len = strlcat(out, in, 2 * max_scf_name_len + 1);
1962 (void) strncpy(out
[all...]
/illumos-gate/usr/src/lib/auditd_plugins/syslog/
H A Dsystoken.h45 tosyslog_t out; /* output data */ member in struct:parse_context
/illumos-gate/usr/src/uts/common/io/vnic/
H A Dvnic_dev.c1109 boolean_t out; local
1113 out = mac_get_promisc_filtered(vn->vn_mch);
1115 bcopy(&out, pr_val, sizeof (boolean_t));
/illumos-gate/usr/src/cmd/boot/bootadm/
H A Dbootadm.c1058 bam_error(_("out of memory\n"));
1099 bam_error(_("out of memory\n"));
1139 bam_error(_("out of memory\n"));
1228 bam_error(_("out of memory\n"));
1445 goto out;
1524 out:
1568 * since it is awkward to display out-of-sync
1949 outfile out; member in struct:__anon468
1960 cf->out.gzfile = NULL;
1962 cf->out
[all...]
/illumos-gate/usr/src/common/ficl/emu/
H A Dloader_emu.c297 * wimped-out on the error codes! :).
495 * Shim for taking commands from BF and passing them out to 'standard'
705 bf_init(const char *rc, ficlOutputFunction out) argument
756 fsi->textOut = out;
1526 goto out;
1556 goto out;
1559 out:
1589 goto out;
1600 goto out;
1605 goto out;
[all...]
/illumos-gate/usr/src/boot/lib/libz/
H A Dcrc32.c21 DYNAMIC_CRC_TABLE and MAKECRCH can be #defined to write out crc32.h.
81 out is a one). We start with the highest power (least significant bit) of
141 /* write out CRC tables to crc32.h */
143 FILE *out; local
145 out = fopen("crc32.h", "w");
146 if (out == NULL) return;
147 fprintf(out, "/* crc32.h -- tables for rapid CRC calculation\n");
148 fprintf(out, " * Generated automatically by crc32.c\n */\n\n");
149 fprintf(out, "local const z_crc_t FAR ");
150 fprintf(out, "crc_tabl
[all...]
H A Dgzguts.h174 unsigned char *out; /* output buffer (double-sized when reading) */ member in struct:__anon107
H A Dinffast.c33 Decode literal, length, and distance codes and write out the resulting
50 LEN -- ran out of enough output space or enough available input
74 unsigned char FAR *out; /* local strm->next_out */ local
76 unsigned char FAR *end; /* while out < end, enough space available */
101 out = strm->next_out - OFF;
102 beg = out - (start - strm->avail_out);
103 end = out + (strm->avail_out - 257);
137 PUP(out) = (unsigned char)(here.val);
186 op = (unsigned)(out - beg); /* max distance in output */
199 PUP(out)
[all...]
H A Dinflate.c48 * - Pull out common wnext == 0 case for speed in inflate_fast()
75 * for the in() and out() functions
308 Write out the inffixed.h that is #include'd above. Defining MAKEFIXED also
323 a.out > inffixed.h
615 unsigned in, out; /* save starting available input and output */ local
636 out = left;
1024 inflate_fast(strm, out);
1125 copy = out - left;
1177 out -= left;
1178 strm->total_out += out;
[all...]
/illumos-gate/usr/src/boot/lib/libz/test/
H A Dinfcover.c243 data is allocated and must eventually be freed. NULL is returned if out of
289 unsigned char *in, *out; local
301 out = malloc(len); assert(out != NULL);
303 head.extra = out;
305 head.name = out;
307 head.comment = out;
319 strm.next_out = out;
327 ret = inflateSetDictionary(&strm, out, 0);
331 ret = inflateSetDictionary(&strm, out,
511 unsigned char *in, *out, *win; local
[all...]
H A Dminigzip.c242 unsigned char out[BUFLEN]; local
250 strm->next_out = out;
253 fwrite(out, 1, BUFLEN - strm->avail_out, gz->file);
301 unsigned char out[BUFLEN]; local
310 strm->next_out = out;
313 fwrite(out, 1, BUFLEN - strm->avail_out, gz->file);
339 void gz_compress OF((FILE *in, gzFile out));
341 int gz_compress_mmap OF((FILE *in, gzFile out));
343 void gz_uncompress OF((gzFile in, FILE *out));
362 void gz_compress(in, out)
463 gzFile out; local
501 FILE *out; local
[all...]
/illumos-gate/usr/src/cmd/mdb/common/modules/libumem/
H A Dumem.c70 * Figure out which type of umem is being used; if it's not there
781 * 'cp', which is at address caddr, and place it in *out.
784 umem_hash_lookup(umem_cache_t *cp, uintptr_t caddr, void *buf, uintptr_t *out) argument
803 *out = (uintptr_t)bcp;
909 * Read the magtype out of the cache, after verifying the pointer's
1315 * We have a buffer which has been allocated out of the
1347 uintptr_t out; local
1361 out = (uintptr_t)tag.bt_bufctl;
1364 &out) == -1)
1367 ret = bufctl_walk_callback(cp, wsp, out);
4016 get_umem_alloc_sizes(int **out, size_t *out_num) argument
[all...]
/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dfsys_zfs.c1144 /* take out the pool name */
1244 nvlist_unpack(char *nvlist, char **out) argument
1250 *out = nvlist + 4;
1634 /* if it's our first time here, zero the best uberblock out */
/illumos-gate/usr/src/uts/common/io/i40e/
H A Di40e_transceiver.c106 * a message block out of the DMA memory via desballoc(9F) and send that up to
135 * seem odd, it importantly keeps us out of trying to do any DMA allocations in
267 * and then we'll do a DMA bind and send it out.
290 * register. When the hardware is done writing out data, it updates us by
297 * the TAIL in the i40e_trqpair_t`itrq_desc_tail. When we write out frames,
345 * Wen performing transmit, we can run out of descriptors and ring entries. When
348 * anything out that specific ring until we notify MAC. To indicate that we're
353 * start sending frames out to us again.
404 * binding a bunch of mblk_t fragments to go out the door. Note that the main
475 int out; local
494 int out; local
1626 i40e_meoi_get_uint8(mblk_t *mp, off_t off, uint8_t *out) argument
1650 i40e_meoi_get_uint16(mblk_t *mp, off_t off, uint16_t *out) argument
[all...]
/illumos-gate/usr/src/uts/common/io/sfxge/
H A Dsfxge_mcdi.c373 uint8_t *out; local
386 out = kmem_zalloc(sizeof (smip->smi_payload), KM_NOSLEEP);
387 if (out == NULL) {
396 emr.emr_out_buf = out;
404 bcopy(out, smip->smi_payload, smip->smi_len);
418 kmem_free(out, sizeof (smip->smi_payload));
437 uint8_t *out; local
450 out = kmem_zalloc(sizeof (smip->smi_payload), KM_NOSLEEP);
451 if (out == NULL) {
460 emr.emr_out_buf = out;
[all...]
/illumos-gate/usr/src/uts/common/os/
H A Ddumpsubr.c234 * ready to write out.
377 int in, out; /* buffer offsets */ member in struct:helper
2026 hp->out = 0;
2060 * hp->out is the next index to fill data
2075 /* If flush, or cpout is full, write it out */
2077 hp->cpout != NULL && hp->out + osize > hp->cpout->size) {
2080 cs = DUMP_SET_TAG(hp->out - CSIZE, hp->tag);
2084 dumpsys_swrite(hp, hp->cpout, hp->out);
2099 hp->out = CSIZE;
2105 (void) memcpy(hp->cpout->buf + hp->out,
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/mdnsd/
H A DDNSCommon.c127 mDNSexport void mDNSAddrMapIPv4toIPv6(mDNSv4Addr* in, mDNSv6Addr* out) argument
129 out->l[0] = 0;
130 out->l[1] = 0;
131 out->w[4] = 0;
132 out->w[5] = 0xffff;
133 out->b[12] = in->b[0];
134 out->b[13] = in->b[1];
135 out->b[14] = in->b[2];
136 out->b[15] = in->b[3];
139 mDNSexport mDNSBool mDNSAddrIPv4FromMappedIPv6(mDNSv6Addr *in, mDNSv4Addr* out) argument
[all...]
/illumos-gate/usr/src/cmd/devfsadm/
H A Ddevfsadm.c1361 goto out;
1397 out: (void) door_return((char *)dcp, sizeof (*dcp), NULL, 0);
1413 * Lock out other devfsadm processes from /dev.
1664 goto out;
1719 goto out;
1734 out:
3759 goto out;
3782 goto out;
3797 * just succeeded to write a file out.. hmm.. maybe
3804 goto out;
7340 char *p, *l, *out; local
[all...]
/illumos-gate/usr/src/uts/common/crypto/io/
H A Ddca.c974 /* toss out kstats */
1832 /* clear out old requests */
2091 DBG(dca, DCHATTY, "req=%p, in=%p, out=%p, ctx=%p, ibuf=%p, obuf=%p",
2096 /* sync out the entire context and descriptor chains */
2297 /* Make sure MCR is synced out to device. */
3356 dca_scatter(const char *src, crypto_data_t *out, int count, int reverse) argument
3359 off_t offset = out->cd_offset + out->cd_length;
3365 switch (out->cd_format) {
3367 if (out
[all...]
/illumos-gate/usr/src/cmd/zic/
H A Dzic.c745 register int base, out; local
782 for (base = 0; base < nrules; base = out) {
784 for (out = base + 1; out < nrules; ++out)
785 if (strcmp(rp->r_name, rules[out].r_name) != 0)
792 zp->z_nrules = out - base;
1892 error(gettext("UTC offset out of range"));

Completed in 742 milliseconds

1234567891011>>