/titanic_52/usr/src/test/zfs-tests/tests/functional/refquota/ |
H A D | refquota_003_pos.ksh | 65 typeset -i used quota refquota 66 used=$(get_prop used $fs) 68 ((used = used / (1024 * 1024))) 70 if [[ $used -lt $refquota ]]; then 71 log_fail "ERROR: $used < $refquota subfs quotas are limited by refquota" 75 used=$(get_prop used $fs) 77 ((used [all...] |
H A D | refquota_002_pos.ksh | 65 typeset -i used quota 66 used=$(get_prop used $fs) 68 ((used = used / (1024 * 1024))) 70 if [[ $used -ne $quota ]]; then 71 log_fail "ERROR: $used -ne $quota Quotas are not limited by quota" 82 used=$(get_prop used $fs) 84 ((used [all...] |
/titanic_52/usr/src/lib/print/libpapi-lpd/common/ |
H A D | lpd-job.c | 154 char **metadata, papi_attribute_t ***used) in lpd_add_rfc1179_attributes() argument 180 papiAttributeListAddString(used, PAPI_ATTR_EXCL, in lpd_add_rfc1179_attributes() 189 papiAttributeListAddString(used, PAPI_ATTR_EXCL, in lpd_add_rfc1179_attributes() 197 papiAttributeListAddString(used, PAPI_ATTR_EXCL, in lpd_add_rfc1179_attributes() 206 papiAttributeListAddString(used, PAPI_ATTR_EXCL, in lpd_add_rfc1179_attributes() 215 papiAttributeListAddString(used, PAPI_ATTR_EXCL, in lpd_add_rfc1179_attributes() 224 papiAttributeListAddBoolean(used, PAPI_ATTR_EXCL, in lpd_add_rfc1179_attributes() 233 papiAttributeListAddString(used, PAPI_ATTR_EXCL, in lpd_add_rfc1179_attributes() 237 /* Indent - used with pr filter */ in lpd_add_rfc1179_attributes() 242 papiAttributeListAddInteger(used, PAPI_ATTR_EXC in lpd_add_rfc1179_attributes() 306 unused_attributes(papi_attribute_t ** list,papi_attribute_t ** used) unused_attributes() argument 350 lpd_add_svr4_attributes(service_t * svc,papi_attribute_t ** attributes,char ** metadata,papi_attribute_t *** used) lpd_add_svr4_attributes() argument 441 lpd_add_hpux_attributes(service_t * svc,papi_attribute_t ** attributes,char ** metadata,papi_attribute_t *** used) lpd_add_hpux_attributes() argument 456 lpd_job_add_attributes(service_t * svc,papi_attribute_t ** attributes,char ** metadata,papi_attribute_t *** used) lpd_job_add_attributes() argument 483 lpd_job_add_files(service_t * svc,papi_attribute_t ** attributes,char ** files,char ** metadata,papi_attribute_t *** used) lpd_job_add_files() argument [all...] |
/titanic_52/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_copies/ |
H A D | zfs_copies.kshlib | 53 # Get the value of property used via zfs list 59 typeset used 61 used=`$ZFS list -H -o used $ds` 62 used=${used%[m|M]} 63 if [[ $used == *K ]]; then 64 used=0 66 $ECHO $used 70 # Check the used spac [all...] |
H A D | zfs_copies_002_pos.ksh | 33 # Verify that the space used by multiple copies is charged correctly 55 log_assert "Verify that the space used by multiple copies is charged correctly." 75 used=$(get_used_prop $TESTPOOL/fs_$val) 76 check_used $used $val 82 (( used = blks * 512 / (1024 * 1024) )) 83 check_used $used $val 88 used=`$DF -F zfs -h /$TESTPOOL/fs_$val/$FILE | $GREP $TESTPOOL/fs_$val \ 90 check_used $used $val 95 used=`$DU -h /$TESTPOOL/fs_$val/$FILE | $AWK '{print $1}'` 96 check_used $used [all...] |
/titanic_52/usr/src/cmd/abi/spectrans/spec2map/ |
H A D | util.c | 29 * util.c -- low-level utilities used by map*.c 61 t->used = -1; in create_stringtable() 81 ++t->used; in add_to_stringtable() 82 if (t->used >= t->nelem) { in add_to_stringtable() 93 for (i = t->used; i < t->nelem; ++i) { in add_to_stringtable() 97 t->elements[t->used] = strset(t->elements[t->used], value); in add_to_stringtable() 109 t->used = -1; in free_stringtable() 121 } else if (index > t->used) { in get_stringtable() 136 for (i = 0; i <= t->used; in in_stringtable() [all...] |
/titanic_52/usr/src/lib/auditd_plugins/syslog/ |
H A D | sysplugin.c | 98 * ht_type and ht_ip are only used for hostname lookup cacheing. 512 size_t used, remaining; in filter() local 662 used = snprintf(bp, remaining, "%hu", in filter() 665 used = strlcpy(bp, event->ae_desc, remaining); in filter() 666 bp += used; in filter() 667 remaining -= used; in filter() 671 used = strlcpy(bp, " failed", remaining); in filter() 673 used = strlcpy(bp, " ok", remaining); in filter() 674 bp += used; in filter() 675 remaining -= used; in filter() [all...] |
/titanic_52/usr/src/test/zfs-tests/tests/functional/snapused/ |
H A D | snapused.kshlib | 43 used=$(get_prop used $dataset) 50 if ((used != used_sum)); then 51 log_fail "$dataset: used($used) is not the sum($used_sum) of usedby*" 80 used=$(get_prop used $child) 81 if ((reservation > used)); then 84 ((usedbychildren_sum += used)) 90 log_fail "$dataset: usedbychildren($parent_usedbychildren) is not the sum($usedbychildren_sum) of used b [all...] |
/titanic_52/usr/src/cmd/refer/ |
H A D | mkey2.c | 23 static int alph, used, prevc; variable 42 alph = used = prevc = eof = 0; in dofile() 50 used = alph = 0; in dofile() 52 for (s = line; (c = *s) && (used < keycount); s++) in dofile() 55 if (used) putchar('\n'); in dofile() 59 used = alph = 0; in dofile() 60 while ((c = getc(f)) != EOF && used < keycount) in dofile() 62 if (used) putchar('\n'); in dofile() 142 if (used == 0) { in chkey() 153 used in chkey() [all...] |
/titanic_52/usr/src/cmd/backup/dump/ |
H A D | lint.sed | 12 /myrcmd.c",.*assigned value never used: retval .*(22[0-9])/d 14 /dumponline.c",.*name used but not defined: log10 /d 15 /dumponline.c",.*name used but not defined: getfullblkname /d 16 /dumpmain.c",.*name used but not defined: getfullrawname /d 19 /partial.c",.*name used but not defined: ulimit/d 22 /lint suppression directive not used/d 24 /memutils.c",.*assigned value never used: allocated at/d 25 /dumpmain.c",.*assigned value never used:/d 31 /assigned value never used: idates_in/d 32 /roll_log.c",.*assigned value never used/ [all...] |
/titanic_52/usr/src/cmd/rcm_daemon/common/ |
H A D | ttymux_rcm.c | 327 add_dependency(rsrc_t *user, rsrc_t *used) in add_dependency() argument 332 if (user == NULL || used == NULL) in add_dependency() 335 if (user->id && used->id && strcmp(user->id, used->id) == 0) { in add_dependency() 348 * Does the using resource already depends on the used in add_dependency() 351 if (link->used == used) in add_dependency() 362 _msg(6, ("TTYMUX: New link user %s used %s\n", user->id, used->id)); in add_dependency() 365 link->used in add_dependency() 761 rsrc_t *used; probe_dependencies() local [all...] |
/titanic_52/usr/src/lib/iconv_modules/utf-8/txt_ebcdic_utf/ |
H A D | shadow.txt | 117 -1, /* NOT be used with the shortest number of bytes in UTF-EBCDIC */ 118 -1, /* NOT be used with the shortest number of bytes in UTF-EBCDIC */ 119 -1, /* NOT be used with the shortest number of bytes in UTF-EBCDIC */ 120 -1, /* NOT be used with the shortest number of bytes in UTF-EBCDIC */ 121 -1, /* NOT be used with the shortest number of bytes in UTF-EBCDIC */ 184 -1, /* NOT be used with the shortest number of bytes in UTF-EBCDIC */
|
/titanic_52/usr/src/cmd/pools/poolstat/ |
H A D | poolstat.c | 66 /* statistics bags used to collect data from various provider */ 99 { DX_FIELD, "used", "used", FL, 4, -1, addrof(pset_sbag_s.bag), 119 { D_FIELD, "p_used", "used", FL, 4, -1, addrof(pset_sbag_s.bag), 173 "\tid pool type rid rset min max size used load\n")); in usage() 201 /* pset_sbag_s is used to collect pset statistics */ in main() 434 * the field formatting parameters. Return the number of used bytes. 439 int used; in default_f() local 445 used = snprintf(str + pos, left, "%*.*lld", in default_f() 452 used in default_f() 505 int used; bigno_f() local 591 int used; used_stat_f() local 618 int used = 0; header_f() local 644 int used; prt_stat_line() local 697 int used; /* used chars in line */ prt_stat_hd() local [all...] |
/titanic_52/usr/src/contrib/zlib/ |
H A D | inftrees.c | 24 lens shorts, which is used as a work area. type is the type of code 43 unsigned used; /* code entries in table used */ in inflate_table() local 95 The length counts are used for other purposes as well, i.e. finding in inflate_table() 147 filled is at next and has curr index bits. The code being used is huff in inflate_table() 161 counts are used for this, and so count[] is decremented as codes are in inflate_table() 164 used keeps track of how many table entries have been allocated from the in inflate_table() 179 base = extra = work; /* dummy value--not used */ in inflate_table() 201 used = 1U << root; /* use root table entries */ in inflate_table() 202 mask = used in inflate_table() [all...] |
/titanic_52/usr/src/boot/lib/libz/ |
H A D | inftrees.c | 24 lens shorts, which is used as a work area. type is the type of code 47 unsigned used; /* code entries in table used */ local 99 The length counts are used for other purposes as well, i.e. finding 151 filled is at next and has curr index bits. The code being used is huff 165 counts are used for this, and so count[] is decremented as codes are 168 used keeps track of how many table entries have been allocated from the 183 base = extra = work; /* dummy value--not used */ 207 used = 1U << root; /* use root table entries */ 208 mask = used [all...] |
/titanic_52/usr/src/cmd/make/bin/ |
H A D | read2.cc | 73 * extra_names points to a vector that is used if current_names overflows. 78 * The name vector that was used 89 * Global variables used: 143 if(current_names->used != 0 && current_names->names[current_names->used-1] == plus) { in enter_name() 150 if (current_names->used == VSIZEOF(current_names->names)) { in enter_name() 157 current_names->used = 0; in enter_name() 161 current_names->target_group[current_names->used] = NULL; in enter_name() 162 current_names->names[current_names->used++] = name; in enter_name() 181 * The name vector that was used [all...] |
/titanic_52/usr/src/cmd/abi/spectrans/spec2trace/ |
H A D | util.c | 292 t->used = -1; in create_string_table() 310 t->used++; in add_string_table() 311 if (t->used >= t->nelem) { in add_string_table() 319 for (i = t->used; i < t->nelem; i++) { in add_string_table() 324 t->elements[t->used] = strset(t->elements[t->used], value); in add_string_table() 336 t->used = -1; in free_string_table() 347 } else if (index > t->used) { in get_string_table() 363 for (i = 0; i <= t->used; i++) { in in_string_table() 382 qsort((char *)t->elements, (size_t)t->used, in sort_string_table() [all...] |
/titanic_52/usr/src/cmd/cmd-inet/etc/ |
H A D | wanboot.conf.sample | 47 # These are used by wanboot-cgi(bootfile|bootfs|rootfs) to determine 59 # This is used by wanboot-cgi(bootfs) and wanboot to determine whether 65 # This is used by wanboot-cgi(bootfs) and wanboot to determine whether 75 # may be used to add additional mappings to the hosts file. 79 # This is used to specify the URL of wanboot-cgi on the server on which 80 # the root_file exists, and used by wanboot to obtain the root server's 88 # This is used by wanboot-cgi(rootfs) to locate the path of the 93 # This is used by wanboot to determine the URL of the bootserver 99 # This is used by the system startup scripts. If set, it should 100 # point to a file that contains name value pairs to be used a [all...] |
/titanic_52/usr/src/cmd/sgs/elfedit/modules/common/ |
H A D | str.msg | 87 If -any is set, then the specified section is used without\n\ 89 string table. This can be used to examine sections that are\n\ 95 cannot be used in conjunction with -end.\n". 99 the string table. This option cannot be used with the final\n\ 106 is used directly. If it is a section that has an associated\n\ 108 associated string table is used.\n" 113 is used directly. If it is a section that has an associated\n\ 115 associated string table is used.\n" 120 with it. If this is a string table section, it is used\n\ 123 associated string table is used [all...] |
/titanic_52/usr/src/cmd/ndmpd/ndmp/ |
H A D | ndmpd_door.c | 23 * nor the names of its contributors may be used to endorse or promote 59 * Statistics used in ndmpstat command 160 unsigned int used; in ndmp_door_server() local 240 if ((enc_status = ndmp_door_encode_finish(enc_ctx, &used)) != 0) in ndmp_door_server() 243 (void) door_return(buf, used, NULL, 0); in ndmp_door_server() 250 (void) ndmp_door_encode_finish(enc_ctx, &used); in ndmp_door_server() 251 (void) door_return(buf, used, NULL, 0); in ndmp_door_server() 258 (void) ndmp_door_encode_finish(enc_ctx, &used); in ndmp_door_server() 259 (void) door_return(buf, used, NULL, 0); in ndmp_door_server()
|
/titanic_52/usr/src/cmd/backup/restore/ |
H A D | lint.sed | 6 /myrcmd.c",.*assigned value never used: retval .*(22[0-9])/d 7 /tape.c",.*assigned value never used: mt .*(22[0-9])/d 9 /dirs.c",.*name used but not defined: utime /d 12 /byteorder.c",.*assigned value never used: allocated at.*byteorder.c/d
|
/titanic_52/usr/src/uts/intel/io/acpica/ |
H A D | acpi_enum.c | 57 static char USED_RESOURCES[] = "used-resources"; 78 * insert used io/mem in increasing order 81 insert_used_resource(used_io_mem_t *used, int *used_count, used_io_mem_t **head) in insert_used_resource() argument 87 *head = used; in insert_used_resource() 93 (curr->start_addr < used->start_addr)) { in insert_used_resource() 99 *head = used; in insert_used_resource() 100 used->next = curr; in insert_used_resource() 103 prev->next = used; in insert_used_resource() 105 used->next = curr; in insert_used_resource() 112 used_io_mem_t *used; in add_used_io_mem() local 1022 used_io_mem_t *used = *head; used_res_io_mem() local [all...] |
/titanic_52/usr/src/cmd/smbsrv/smbd/ |
H A D | smbd_share_doorsvc.c | 150 unsigned int used; in smbd_share_dispatch() local 251 if ((enc_status = smb_dr_encode_finish(enc_ctx, &used)) != 0) { in smbd_share_dispatch() 255 (void) smb_dr_encode_finish(enc_ctx, &used); in smbd_share_dispatch() 258 smbd_door_return(&smb_share_sdh, buf, used, NULL, 0); in smbd_share_dispatch() 264 (void) smb_dr_encode_finish(enc_ctx, &used); in smbd_share_dispatch() 265 smbd_door_return(&smb_share_sdh, buf, used, NULL, 0); in smbd_share_dispatch()
|
/titanic_52/usr/src/lib/libxcurses/src/libc/xcurses/ |
H A D | m_cc.c | 52 int used; member 61 if (sp->max <= sp->used) 64 sp->mbs[sp->used++] = byte; 92 last = string.used; 95 string.used = last; 112 string.mbs[string.used] = '\0'; 114 return string.used; 122 * This routinue should be used when sizeof (wchar_t) < sizeof (wint_t). 193 * returning either -1 on error or the number of bytes used to convert the 204 * will instead by the number of bytes used t [all...] |
/titanic_52/usr/src/test/zfs-tests/tests/functional/reservation/ |
H A D | reservation_007_pos.sh | 68 space_used=`get_prop used $TESTPOOL` 92 used_aft_dset1=`get_prop used $TESTPOOL` 99 # After destroying the second dataset the space used and 106 used_dest_dset2=`get_prop used $TESTPOOL` 112 # After destroying the first dataset the space used and 118 used_dest_dset1=`get_prop used $TESTPOOL`
|