Home
last modified time | relevance | path

Searched refs:fixed (Results 1 – 25 of 105) sorted by relevance

12345

/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/
H A DRELEASE3 that read from stdin has been fixed.
4 12-08-01 A bug that interpreted "cd .foo" as "cd foo" has been fixed.
7 been fixed.
8 12-07-20 A bug where builtin -d /path/foo deleted foo has been fixed.
10 some systems has been fixed.
13 has been fixed.
16 has been fixed.
18 closed has been fixed.
20 remain in /etc. This has been fixed.
22 library added by builtin -f lib has been fixed.
[all …]
H A DRELEASE9351 7. Bugs fixed in 12/28/93a for default OPTIONS
54 to be lost has been fixed.
57 has been fixed.
59 the LANG variable was assigned to has been fixed.
62 was called from the arithmetic evaluator has been fixed.
64 was executed in a subshell was fixed.
69 h. A bug was fixed which caused ksh to loop when execution trace
73 terminated was fixed.
75 when the pattern began with a [ or +( has been fixed.
78 has been fixed.
[all …]
/illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_root/zpool_import/
H A Dzpool_import_errata4.ksh95 log_must zfs create $POOL_NAME/fixed
120 log_must zfs mount $POOL_NAME/fixed/testfs
124 new_mntpnt=$(get_prop mountpoint $POOL_NAME/fixed/testfs)
126 log_must diff /dev/zvol/$POOL_NAME/testvol /dev/zvol/$POOL_NAME/fixed/testvol
128 log_must has_ivset_guid $POOL_NAME/fixed/testfs@snap1
129 log_must has_ivset_guid $POOL_NAME/fixed/testfs@snap2
130 log_must has_ivset_guid $POOL_NAME/fixed/testfs@snap3
131 log_must has_ivset_guid $POOL_NAME/fixed/testvol@snap1
132 log_must has_ivset_guid $POOL_NAME/fixed/testvol@snap2
133 log_must has_ivset_guid $POOL_NAME/fixed/testvol@snap3
/illumos-gate/usr/src/contrib/ast/src/lib/libast/tm/
H A Dtmzone.c55 static Tm_zone_t fixed; in tmzone() local
59 …if ((*name == '+' || *name == '-') && (fixed.west = tmgoff(name, &e, TM_LOCALZONE)) != TM_LOCALZON… in tmzone()
61 strlcpy(fixed.standard = fixed.daylight = off, name, sizeof(off)); in tmzone()
66 return &fixed; in tmzone()
/illumos-gate/usr/src/cmd/vi/port/
H A Dex.news133 margin). Similar problem also fixed for ":R" for replacements
139 12.*code fixed to allow hardtabs set to 0. Now, if hardtabs set
167 25.*abbreviations fixed so they do not loop recursively
194 has been fixed. This also fixes a bug causing a hang until the
205 temp file and encrypted text on your screen has been fixed.
259 A bug causing <escape> <del> to core dump vi has been fixed.
262 to write encrypted text has been fixed.
265 1,$s/xxx/yyy/g with lots of changes, has been fixed.
268 set nomesg after starting up the editor has been fixed. Note
272 The eat newline glitch has been fixed so that vt100's and tab132's
[all …]
/illumos-gate/usr/src/cmd/format/
H A Dctlr_scsi.c655 struct mode_err_recov *fixed; in scsi_ms_page1() local
670 fixed = &u_fixed.page1; in scsi_ms_page1()
717 MODE_SENSE_PC_CHANGEABLE, (caddr_t)fixed, in scsi_ms_page1()
719 if (status || MODESENSE_PAGE_LEN(fixed) < MIN_PAGE1_LEN) { in scsi_ms_page1()
732 fixed->read_retry_count != 0) { in scsi_ms_page1()
739 fixed->write_retry_count != 0) { in scsi_ms_page1()
759 (uchar_t *)page1, (uchar_t *)fixed, cur_dtype->dtype_chglist); in scsi_ms_page1()
816 struct mode_disco_reco *fixed; in scsi_ms_page2() local
829 fixed = &u_fixed.page2; in scsi_ms_page2()
876 MODE_SENSE_PC_CHANGEABLE, (caddr_t)fixed, in scsi_ms_page2()
[all …]
/illumos-gate/usr/src/tools/smatch/src/
H A Dsmatch_common_functions.c48 sval_t fixed; in match_strnlen() local
58 if (rl_to_sval(*rl, &fixed) && sval_cmp(fixed, bound) >= 0) { in match_strnlen()
/illumos-gate/usr/src/test/util-tests/tests/awk/
H A DMakefile23 BUGS_AWK :sh= (cd bugs-fixed; print *.awk)
53 $(BUGS_FILES:%=$(TESTDIR)/bugs-fixed/%) \
63 SUBDIRS = bugs-fixed data examples/awk examples/out gnu syn tests
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/sh/
H A Darray.c76 # define array_fixed_data(ap) ((ap)?((struct fixed_array*)((ap)->fixed))->data:0)
103 else if(fp = (struct fixed_array*)ap->fixed) in array_scope()
107 aq->fixed = (void*)fp; in array_scope()
144 return (ap->header.fixed || ((ap->cur<aq->maxi) && aq->val[ap->cur].cp)); in array_covered()
218 else if(fp = (struct fixed_array*)arp->fixed) in array_getup()
279 struct fixed_array *fp=(struct fixed_array*)(arp->fixed); in array_find()
292 …nv_putsub(np, NIL(char*), ARRAY_SCAN|ARRAY_NOSCOPE|(ap->header.fixed?(ARRAY_UNDEF|ARRAY_FIXED):0)); in array_find()
581 if(ap->fixed && nv_isattr(np,NV_INT16P) == NV_INT16) in array_getval()
616 int xfree = (ap->fixed||is_associative(ap))?0:array_isbit(aq->bits,aq->cur,ARRAY_NOFREE); in array_putval()
668 else if(fp=(struct fixed_array*)ap->fixed) in array_putval()
[all …]
H A Dname.c413 if(ap && ap->fixed) in nv_setlist()
419 if(!(arg->argflag&ARG_APPEND) && (!ap || !ap->fixed)) in nv_setlist()
458 if(!nv_isarray(np) || ((ap=nv_arrayptr(np)) && !ap->fixed && (ap->nelem&ARRAY_MASK))) in nv_setlist()
1032 int fixed; in nv_create() local
1050 fixed = 0; in nv_create()
1051 if((ap=nv_arrayptr(np)) && ap->fixed) in nv_create()
1052 fixed = 1; in nv_create()
1075 if(fixed) in nv_create()
1086 if(fixed) in nv_create()
1147 else if(n==0 && !fixed && (c==0 || (c=='[' && !nv_isarray(np)))) in nv_create()
[all …]
H A Dnvtree.c419 int fixed=0; in nv_attribute() local
505 if(ap && ap->fixed) in nv_attribute()
506 fixed++; in nv_attribute()
557 if(fixed) in nv_attribute()
645 if(ep==Empty && !(ap && ap->fixed)) in nv_outnode()
780 if((ap=nv_arrayptr(np)) && ap->fixed) in outval()
/illumos-gate/usr/src/lib/librstp/common/
H A DChangeLog15 - - 'The bug in clilib has been fixed
22 - fixed (hop to the DESIGNATED_LISTEN)
56 - - The function rolesel.c has been drastically fixed, IMHO
H A DREADME.news15 - The function rolesel.c has been drastically fixed, IMHO
/illumos-gate/usr/src/lib/fm/topo/libtopo/common/
H A Dsvc.c175 char *fixed; in svc_create_node() local
192 if ((fixed = topo_mod_zalloc(mod, len + 1)) == NULL) { in svc_create_node()
200 fixed[i] = '/'; in svc_create_node()
202 fixed[i] = fmristr[j++]; in svc_create_node()
203 fixed[i] = '\0'; in svc_create_node()
205 if (topo_mod_str2nvl(mod, fixed, &fmri) < 0) { in svc_create_node()
208 topo_mod_free(mod, fixed, len + 1); in svc_create_node()
211 topo_mod_free(mod, fixed, len + 1); in svc_create_node()
/illumos-gate/usr/src/grub/grub-0.97/
H A DAUTHORS19 Gordon Matzigkeit adopted GRUB into the GNU Project. He fixed several
58 KB Sriram added a better detection of FAT filesystem and fixed a
61 Eric Kvaalen fixed a lot of problems in the GRUB manual.
H A DNEWS179 fixed. So now the image `nbgrub' can work fine even with a card such
250 * The NetBSD and OpenBSD boot bug is fixed.
381 * Many minor bugs fixed (some in the build scripts).
422 users of version 0.3 6/17/96. Again, all known problems fixed.
434 * Known bugs in floppy operation fixed (12-bit FAT didn't work for
439 crash on several PCs is now fixed. This seems to have been the root
495 being fixed too.
498 this is being fixed)
511 * Several weird bugs fixed. One important note: If you recompile, it
524 and the command-line. This will be fixed.
/illumos-gate/usr/src/cmd/sgs/ldprof/common/
H A Dprofile.c164 int i, fd, fixed = 0; in profile_open() local
220 fixed = 1; in profile_open()
228 if (fixed == 0) { in profile_open()
239 if (fixed == 0) { in profile_open()
263 if (fixed == 0) { in profile_open()
/illumos-gate/usr/src/common/zfs/
H A Dzprop_common.c381 zprop_width(int prop, boolean_t *fixed, zfs_type_t type) in zprop_width() argument
394 *fixed = B_TRUE; in zprop_width()
418 *fixed = B_FALSE; in zprop_width()
435 *fixed = B_FALSE; in zprop_width()
/illumos-gate/usr/src/cmd/csh/
H A Dprintf.c329 goto fixed; in _print()
335 goto fixed; in _print()
341 fixed: in _print()
/illumos-gate/usr/src/uts/i86pc/os/
H A Dmp_machdep.c1301 uint32_t freq, mul, near66, delta66, near50, delta50, fixed, delta, i; in mach_fixcpufreq() local
1321 fixed = near66; in mach_fixcpufreq()
1324 fixed = near50; in mach_fixcpufreq()
1328 if (fixed > INT_MAX) in mach_fixcpufreq()
1346 fixed = x86_cpu_freq[i]; in mach_fixcpufreq()
1356 fixed = x86_cpu_freq[i]; in mach_fixcpufreq()
1375 cpu_freq = (int)fixed; in mach_fixcpufreq()
/illumos-gate/usr/src/lib/libfru/include/
H A Dlibfru.h120 unsigned fixed : 1; member
136 unsigned fixed : 1; member
/illumos-gate/usr/src/cmd/hal/fdi/
H A DMakefile50 preprobe/10osvendor/20-ignore-fixed-storage.fdi \
/illumos-gate/usr/src/lib/libfru/libfruraw/
H A Dfru_access_impl.h138 int fixed; /* fixed or non-fixed segment */ member
/illumos-gate/usr/src/cmd/picl/plugins/sun4u/lib/fruaccess/
H A Dfru_access_impl.h142 int fixed; /* fixed or non-fixed segment */ member
/illumos-gate/usr/src/psm/
H A DMakefile.psm.6434 # XX64 all the stuff below this line should go away once the tools are fixed

12345