Home
last modified time | relevance | path

Searched refs:head (Results 1 – 25 of 714) sorted by path

12345678910>>...29

/illumos-gate/exception_lists/
H A Dcopyright117 usr/src/head/rpcsvc/THIRDPARTYLICENSE.nfs4_prot.descrip
398 usr/src/test/util-tests/tests/head/*.in
399 usr/src/test/util-tests/tests/head/*.out
/illumos-gate/usr/src/
H A DMakefile53 HDRSUBDIRS= uts head lib cmd
58 CHKHDRSUBDIRS= head uts lib
127 clean: $(SUBDIRS) head pkg
128 clobber: $(SUBDIRS) head pkg clobber_local
169 $(SUBDIRS) head pkg: FRC target
210 @cd head; pwd; $(MAKE) install_h
232 XRINCDIRS = uts/common head ucbhead
248 $(JAVA_ROOT)/bin/java -fullversion 2>&1 | head -1; \
/illumos-gate/usr/src/boot/common/
H A Dmultiboot2.c421 insert_cmdline(const char *head, const char *prop) in insert_cmdline() argument
427 tail = strstr(head, prop_opt); in insert_cmdline()
431 diff = tail - head; in insert_cmdline()
438 asprintf(&cmdline, "%s%s%s", head, prop_opt, prop); in insert_cmdline()
440 asprintf(&cmdline, "%.*s%s,%s", len, head, prop, tail); in insert_cmdline()
848 struct chunk_head *head; in multiboot2_exec() local
1278 head = &relocator->rel_chunk_head; in multiboot2_exec()
1279 STAILQ_INIT(head); in multiboot2_exec()
1287 STAILQ_INSERT_TAIL(head, chunk, chunk_next); in multiboot2_exec()
1306 STAILQ_INSERT_TAIL(head, chunk, chunk_next); in multiboot2_exec()
[all …]
/illumos-gate/usr/src/boot/efi/loader/
H A Dcopy.c267 struct chunk_head *head; in efi_copy_finish() local
274 head = &relocator->rel_chunk_head; in efi_copy_finish()
275 chunk = STAILQ_LAST(head, chunk, chunk_next); in efi_copy_finish()
293 STAILQ_FOREACH_FROM(chunk, head, chunk_next) { in efi_copy_finish()
306 STAILQ_FOREACH(c, head, chunk_next) { in efi_copy_finish()
H A Dmemmap.c77 STAILQ_HEAD(smap_head, smap_buf) head = in efi_getsmap()
78 STAILQ_HEAD_INITIALIZER(head); in efi_getsmap()
94 STAILQ_INIT(&head); in efi_getsmap()
121 STAILQ_INSERT_TAIL(&head, next, sb_bufs); in efi_getsmap()
142 STAILQ_FOREACH(cur, &head, sb_bufs) in efi_getsmap()
145 cur = STAILQ_FIRST(&head); in efi_getsmap()
/illumos-gate/usr/src/boot/i386/libi386/
H A Dbiosdisk.c544 struct edd_params head; in bd_get_diskinfo_ext() member
551 params = &dparams.head; in bd_get_diskinfo_ext()
H A Dbiossmap.c59 STAILQ_HEAD(smap_head, smap_buf) head = in bios_getsmap()
60 STAILQ_HEAD_INITIALIZER(head); in bios_getsmap()
64 STAILQ_INIT(&head); in bios_getsmap()
89 STAILQ_INSERT_TAIL(&head, next, bufs); in bios_getsmap()
98 STAILQ_FOREACH(cur, &head, bufs) in bios_getsmap()
105 STAILQ_FOREACH(cur, &head, bufs) in bios_getsmap()
111 cur = STAILQ_FIRST(&head); in bios_getsmap()
/illumos-gate/usr/src/boot/i386/pmbr/
H A Dpmbr.s178 .byte 0x00 # head 0
182 .byte 0xFF # ending head
/illumos-gate/usr/src/boot/libsa/zfs/
H A Dnvlist.c795 uint8_t *head, *tail; in nvlist_remove() local
815 head = (uint8_t *)nvp; in nvlist_remove()
830 tail = head + nvp->encoded_size; in nvlist_remove()
835 bcopy(tail, head, size); in nvlist_remove()
839 head = head + nvp->encoded_size; in nvlist_remove()
840 nvp = (nvp_header_t *)head; in nvlist_remove()
1157 nvp_header_t head, *hp; in nvlist_add_common() local
1203 nvl->nv_asize += head.encoded_size; in nvlist_add_common()
1206 bzero(nvl->nv_idx, head.encoded_size + 8); in nvlist_add_common()
1208 *hp = head; in nvlist_add_common()
[all …]
H A Dzfs.c394 head = offset % secsz; in vdev_read()
396 tail = total_size - (head + bytes); in vdev_read()
399 if (head > 0) in vdev_read()
419 if (head > 0) { in vdev_read()
425 memcpy(outbuf, bouncebuf + head, min(secsz - head, bytes)); in vdev_read()
426 outbuf += min(secsz - head, bytes); in vdev_read()
483 head = offset % secsz; in vdev_write()
485 tail = total_size - (head + bytes); in vdev_write()
488 if (head > 0) in vdev_write()
508 if (head > 0) { in vdev_write()
[all …]
/illumos-gate/usr/src/boot/sys/sys/
H A Dqueue.h126 (head)->trace.prevline = (head)->trace.lastline; \
127 (head)->trace.prevfile = (head)->trace.lastfile; \
186 #define SLIST_EMPTY(head) ((head)->slh_first == NULL) argument
188 #define SLIST_FIRST(head) ((head)->slh_first) argument
301 #define STAILQ_FIRST(head) ((head)->stqh_first) argument
325 (head)->stqh_last = &STAILQ_FIRST((head)); \
376 (head)->stqh_last = &STAILQ_FIRST((head)); \
450 #define LIST_EMPTY(head) ((head)->lh_first == NULL) argument
452 #define LIST_FIRST(head) ((head)->lh_first) argument
614 #define TAILQ_FIRST(head) ((head)->tqh_first) argument
[all …]
/illumos-gate/usr/src/cmd/
H A DMakefile202 head \
612 head \
/illumos-gate/usr/src/cmd/abi/appcert/static_prof/
H A Dstatic_prof.c1404 dt_list *head = p, *tail; in add_dtneeded() local
1406 if (!head) in add_dtneeded()
1407 head = node; in add_dtneeded()
1409 tail = head; in add_dtneeded()
1412 return (head); in add_dtneeded()
1418 return (head); in add_dtneeded()
1423 return (head); in add_dtneeded()
/illumos-gate/usr/src/cmd/allocate/
H A Ddisk_clean.sh210 FSTYPE=`echo "$fstyp_output" | /usr/bin/head -1`
/illumos-gate/usr/src/cmd/ast/libcmd/
H A DMakefile.defs32 fmt.o fold.o fts_fix.o getconf.o head.o id.o join.o lib.o ln.o \
/illumos-gate/usr/src/cmd/ast/libshell/common/
H A Dillumos_cmdlist.h115 ASTCMDLIST(head)
116 BINCMDLIST(head)
/illumos-gate/usr/src/cmd/ast/libshell/common/tests/
H A Dillumos_4149_builtin_head.sh34 builtin head tail
55 [[ $(head -1 $t1) == 'test00' ]] || \
58 [[ $(head -2 $t1) == $'test00\ntest01' ]] || \
61 [[ $(head -s 2 -n2 $t1) == $'test02\ntest03' ]] || \
64 [[ $(head -5 $t1) == $'test00\ntest01\ntest02\ntest03\ntest04' ]] || \
67 [[ $(head -10 $t1) == $'test00\ntest01\ntest02\ntest03\ntest04' ]] || \
81 [[ $(head -1 $t3) == 'nonewline' ]] || \
84 [[ $(head -2 $t3) == 'nonewline' ]] || \
95 [[ $(head -1 $t2) == "test00" ]] || \
98 [[ $(head -2 $t2) == $'test00\ntest01' ]] || \
[all …]
/illumos-gate/usr/src/cmd/audio/include/
H A DAudioList.h65 AudioListEntry head; // list head
/illumos-gate/usr/src/cmd/audio/utilities/
H A DAudioList.cc107 Audio(local_name), head(0) in AudioList()
124 return (head.next); in first()
309 prev = &head; // this is the first extent in Insert()
342 for (prev = &head; prev->next != 0; prev = prev->next) in Append()
/illumos-gate/usr/src/cmd/auditrecord/
H A Daudit_record_attr.txt70 token=head:header
88 kernel=head:insert:subj:[upriv]:ret
89 user=head:subj:insert:ret
720 format=head:text1:ret
770 format=head:text1:ret
1523 format=head:path:arg1:[text]2:subj
2031 format=head:text1
/illumos-gate/usr/src/cmd/backup/dump/
H A DMakefile57 HEADERS= ../../../head/protocols/dumprestore.h \
66 GLOBAL= ../../../head
/illumos-gate/usr/src/cmd/backup/lib/
H A DMakefile49 ../../../head/protocols/dumprestore.h \
64 GLOBAL= ../../../head
/illumos-gate/usr/src/cmd/backup/
H A Dreq.flg31 echo_file usr/src/head/protocols/dumprestore.h
/illumos-gate/usr/src/cmd/backup/restore/
H A DMakefile34 HEADERS= ../../../head/protocols/dumprestore.h \
42 GLOBAL= ../../../head
H A Dinteractive.c66 for (; alist.head < alist.last; alist.head++) in runcmdshell()
346 ap->head++; in getcmd()
437 ap->head++; in getcmd()
606 ap->head = &single; in expandarg()
607 ap->last = ap->head + 1; in expandarg()
615 qsort((char *)ap->head, (size_t)(ap->last - ap->head), in expandarg()
616 sizeof (*ap->head), in expandarg()
641 alist.head = &single; in printlist()
676 if (alist.head != 0) { in printlist()
690 alist.head = NULL; in printlist()
[all …]

12345678910>>...29