Searched defs:full (Results 1 - 25 of 28) sorted by relevance

12

/illumos-gate/usr/src/lib/libproc/common/
H A Dpr_lseek.c35 offset_t full; /* full 64 bit offset value */ member in union:__anon3802
75 off.full = offset;
108 offset = (off_t)off.full;
150 off.full = offset;
183 offset = off.full;
/illumos-gate/usr/src/cmd/bnu/
H A Dcpmv.c201 char full[MAXFULLNAME]; local
203 (void) strcpy(full, f2);
205 (void) strcat(full, "/");
206 (void) strcat(full, BASENAME(f1, '/'));
209 /* create full owned by uucp */
210 (void) close(creat(full, PUB_FILEMODE));
211 (void) chmod(full, PUB_FILEMODE);
216 status = xcp(f1, full);
224 _exit(xcp(f1, full));
/illumos-gate/usr/src/cmd/refer/
H A Dhunt6.c39 char *qitem[], char *rprog, int full)
131 if (full >= g)
38 baddrop(unsigned *mptr, int nf, FILE *fc, int nitem, char *qitem[], char *rprog, int full) argument
H A Dglue1.c37 static int full = 1000; variable
91 case 'F': /* put out full text */
92 full = setfrom(argv[1][2]);
253 rprog, full);
H A Dhunt1.c37 static int full = 1000; variable
90 case 'F': /* put out full text */
91 full = setfrom(argv[1][2]);
212 nitem, qitem, rprog, full);
247 if (full) {
/illumos-gate/usr/src/lib/libtsol/common/
H A Dgetpathbylabel.c60 * Return a pointer to the trailing suffix of full that follows the prefix
61 * given by pref. If pref isn't a prefix of full, return NULL. Apply
66 pathsuffix(char *full, char *pref) argument
70 if (full == NULL || pref == NULL)
74 if (strncmp(pref, full, preflen) != 0)
78 * pref is a substring of full. To be a subpath, it cannot cover a
79 * partial component of full. The last clause of the test handles the
82 if (full[preflen] != '\0' && full[preflen] != '/' && preflen > 1)
85 if (preflen == 1 && full[
98 subpath(char *full, char *sub) argument
[all...]
H A Dprivate.c107 * full = 1, if static words lists to be updated.
130 char *short_words, char *dimming_list, int full)
161 if (full) {
192 } /* if (full) */
127 build_strings(int *static_string_size, char **static_string, char *new_string, int *static_words_size, int new_words_size, char **static_words, char **static_dimming, int number_of_words, char *long_words, char *short_words, char *dimming_list, int full) argument
/illumos-gate/usr/src/cmd/svr4pkg/libinst/
H A Dlistmgr.c55 int full; /* segment has no available space */ member in struct:alloc_seg
179 alloc_segment->full = 0;
215 new_alloc_cs->full = 0;
299 if (bl_ptr->cur_segment == NULL || bl_ptr->cur_segment->full)
306 /* Advance it and mark if full. */
311 bl_ptr->cur_segment->full = 1;
458 list_ptr->alloc_segs->full = 0;
516 * structure is full, we have to grow it without resetting
520 if (bl_cs_array[list_handle]->alloc_segs->full) {
/illumos-gate/usr/src/lib/krb5/plugins/kdb/db2/libdb2/btree/
H A Dbt_split.c627 indx_t full, half, nxt, off, skip, top, used; local
639 full = t->bt_psize - BTDATAOFF;
640 half = full / 2;
678 if ((skip <= off && used + nbytes + sizeof(indx_t) >= full)
/illumos-gate/usr/src/lib/libnisdb/
H A Dldap_attr.c47 char *full; local
55 full = sdup(myself, T, name);
57 full = scat(myself, T, scat(myself, F, name, "."),
63 return (full);
/illumos-gate/usr/src/cmd/avs/dsstat/
H A Dsndr_stats.c763 * 1) full and partial are same
764 * 2) partial is the last 15 chars of full
767 sndr_strcmp(char *full, char *partial) argument
769 char *f = full;
772 rc = strcmp(full, partial);
776 (strlen(full) > NAMED_LEN)) {
777 f += strlen(full) - NAMED_LEN;
/illumos-gate/usr/src/cmd/fs.d/autofs/
H A Dautomount.h215 rwlock_t rwlock; /* protects 'full' and 'next' */
216 int full; /* full == 1 when cache full */ member in struct:autofs_rddir_cache
/illumos-gate/usr/src/cmd/mdb/sun4u/modules/unix/
H A Dunix.c554 ttprint_short(uintptr_t addr, const trap_trace_fullrec_t *full, int *cpu) argument
557 const struct trap_trace_record *ttp = &full->ttf_rec;
560 mdb_printf("%3d ", full->ttf_cpu);
562 if (*cpu != full->ttf_cpu)
632 ttprint_long(uintptr_t addr, const trap_trace_fullrec_t *full, int *cpu) argument
634 const struct trap_trace_record *ttp = &full->ttf_rec;
637 mdb_printf("%3d ", full->ttf_cpu);
638 else if (*cpu != full->ttf_cpu)
902 httprint_short(uintptr_t addr, const htrap_trace_fullrec_t *full, int *cpu) argument
905 const struct htrap_trace_record *ttp = &full
927 httprint_long(uintptr_t addr, const htrap_trace_fullrec_t *full, int *cpu) argument
1164 xctrace_walk(uintptr_t addr, const trap_trace_fullrec_t *full, int *cpu) argument
[all...]
/illumos-gate/usr/src/cmd/fs.d/ufs/df/
H A Ddf.c895 * Return a pointer to the trailing suffix of full that follows the prefix
896 * given by pref. If pref isn't a prefix of full, return NULL. Apply
901 pathsuffix(char *full, char *pref) argument
905 if (full == NULL || pref == NULL)
909 if (strncmp(pref, full, preflen) != 0)
913 * pref is a substring of full. To be a subpath, it cannot cover a
914 * partial component of full. The last clause of the test handles the
917 if (full[preflen] != '\0' && full[preflen] != '/' && preflen > 1)
920 if (preflen == 1 && full[
933 subpath(char *full, char *sub) argument
[all...]
/illumos-gate/usr/src/cmd/svr4pkg/pkgserv/
H A Dpkgserv.c624 parse_line(char *buf, int blen, boolean_t full) argument
653 if (full)
/illumos-gate/usr/src/uts/common/disp/
H A Dthread.c1951 static uint_t full = 0; local
2042 if (full == KMEM_STKINFO_LOG_SIZE && percent < smallest_percent) {
2044 * The log is full and already contains the highest values
2054 full++;
/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dchar_io.c347 auto void cl_refresh (int full, int len);
410 /* Refresh the screen. If FULL is true, redraw the full line, otherwise,
412 void cl_refresh (int full, int len) argument
418 if (full)
454 if (! full)
465 if (! full)
520 /* Print full line and set position here. */
/illumos-gate/usr/src/uts/common/c2/
H A Daudit_token.c1095 boolean_t full; local
1119 full = priv_isfullset(pset);
1121 if (full) {
1146 if (!full)
/illumos-gate/usr/src/cmd/sendmail/src/
H A Dmain.c99 char *FullName; /* sender's full name */
872 case 'F': /* set full name */
1108 else if (sm_strcasecmp(optarg, "full") != 0)
1674 "daemon invoked without full pathname; kill -1 won't work");
1693 char *full = NULL; local
1695 /* full names can't have newlines */
1698 full = newstr(denlstring(FullName, true, true));
1699 FullName = full;
1706 ** Quote a full name with special characters
1712 if (full !
[all...]
/illumos-gate/usr/src/cmd/sgs/elfedit/common/
H A Delfedit.c208 * does not terminate a completely full buffer.
2873 usage(int full) argument
2876 if (full) {
3498 * To get full access to elfedit's capablities, there must
3503 * readonly, use a full usage message, because the simple
/illumos-gate/usr/src/tools/ctf/cvt/
H A Ddwarf.c65 * with the full complement of members. All references to the memberless
66 * enum need to be redirected to the full definition. During the first
69 * memberless enum, we use the hash to locate the full definition. All
834 * need to wait until the second pass when they can be matched with their full
917 tdesc_t *full = NULL; local
922 (void) hash_find_iter(dw->dw_enumhash, tdp, die_enum_match, &full);
928 if (full == NULL) {
934 tdesc_name(tdp), full->t_id);
/illumos-gate/usr/src/cmd/lp/include/
H A Dmsgs.h357 int full; member in struct:__anon806
/illumos-gate/usr/src/cmd/fm/fmadm/common/
H A Dfaulty.c959 print_name(name_list_t *list, char *padding, int *np, int pct, int full) argument
973 if (full) {
1074 int limit, int pct, void (func1)(int, char *), int full)
1094 if (full) {
1113 print_name(list, padding, &n, pct, full);
1120 print_name(list->prev, padding, &n, pct, full);
1124 " use -v option for full list"));
1179 print_sup_record(status_record_t *srp, int opt_i, int full) argument
1196 if (full || n < j || n >= k || max_fault == 0 ||
1231 NULL, full);
1073 print_name_list(name_list_t *list, char *label, int limit, int pct, void (func1)(int, char *), int full) argument
1283 print_status_record(status_record_t *srp, int summary, int opt_i, int full) argument
1335 print_catalog(int summary, int opt_a, int full, int opt_i, int page_feed) argument
[all...]
/illumos-gate/usr/src/uts/common/vm/
H A Dvm_pagelist.c272 * index. Note that when a region is full, it will contribute to the
833 * count if the preceeding region is full.
893 * count if the preceeding region was full.
1896 int full = FULL_REGION_CNT(new_szc); local
1904 if (PAGE_COUNTERS(mnode, new_szc, idx) == full)
2275 uint_t full, bin, color_mask, wrap = 0; local
2334 full = FULL_REGION_CNT(r);
2417 if (PAGE_COUNTERS(mnode, r, idx) != full)
2426 if (PAGE_COUNTERS(mnode, r, idx) == full) {
2494 int idx, full; local
3098 int full, range; local
[all...]
/illumos-gate/usr/src/uts/sun/io/
H A Dsocal.c566 /* Get the full path name for displaying error messages */
2269 * with the full device pathname displayed
2603 * FCAL_TRANSPORT_QFULL, if queue full & sleep not set
2659 * Determine if the queue is full
2666 * If soc's queue full, then we wait for an interrupt
2667 * telling us we are not full.
2675 "que %d is full\n",
2710 /* if soc+'s que still full set flag */
3190 char full; local
3236 * queue is full an
[all...]

Completed in 137 milliseconds

12