/illumos-gate/usr/src/tools/smatch/src/smatch_data/db/ |
H A D | smdb.py | 342 parameter = int(txt[6]) 344 if len(param_names) and parameter in param_names: 345 key = key.replace("$", param_names[parameter]) 349 print " %d | %s | %s" %(parameter, key, txt[8]) 369 parameter = int(txt[0]) 372 if parameter in param_names: 373 name = name.replace("$", param_names[parameter]) 375 if not parameter in vals: 376 vals[parameter] = {} 380 if name in vals[parameter]: [all …]
|
H A D | return_implies.schema | 7 parameter integer, 11 CONSTRAINT implies_row UNIQUE (file, function, call_id, static, type, parameter, key, value)
|
H A D | call_implies.schema | 7 parameter integer, 11 CONSTRAINT implies_row UNIQUE (file, function, call_id, static, type, parameter, key, value)
|
H A D | fixup_kernel.sh | 126 …ernfs_file_direct_read' and function='(struct kernfs_ops)->read' and type = 1002 and parameter = 1; 184 update return_states set parameter = -1, key = '\$' where function = 'ipmi_ssif_lock_cond' and type… 185 …pdate return_states set parameter = 1, key = '\$->tree->tree_lock' where function = 'hfs_find_init…
|
H A D | function_type.schema | 1 CREATE TABLE function_type (file varchar(80), function varchar(80), static boolean, parameter integ…
|
H A D | param_map.schema | 1 CREATE TABLE param_map (file varchar(256), to_from bool, fn_ptr varchar(80), parameter integer, sou…
|
H A D | parameter_name.schema | 1 CREATE TABLE parameter_name (file varchar(80), function varchar(80), static boolean, parameter inte…
|
H A D | fn_data_link.schema | 1 …(file varchar(128), function varchar(64), static boolean, type integer, parameter integer, key var…
|
H A D | caller_info.schema | 1 …), function varchar(64), call_id integer, static boolean, type integer, parameter integer, key var…
|
H A D | common_caller_info.schema | 1 …), function varchar(64), call_id integer, static boolean, type integer, parameter integer, key var…
|
H A D | return_states.schema | 1 …, return_id integer, return varchar(256), static boolean, type integer, parameter integer, key var…
|
/illumos-gate/usr/src/tools/smatch/src/smatch_data/ |
H A D | kernel.parameter_implications.add | 2 * It's pretty common that the return value implies something about a parameter. 6 * function "return range" parameter "implied value range list of parameter" 10 * about the min and the max. We start counting the first parameter at zero.
|
/illumos-gate/usr/src/tools/smatch/src/Documentation/ |
H A D | arm64-detecting-tagged-addresses.txt | 43 from parameter 2 of the function) and existing kernel addresses (untagged). 56 originated from parameter 2 of its function '__get_user_pages'. 60 parameter up the call stack, we can do this with the following Smatch command: 76 parameter 2 contains user data and where the top byte of the parameter may be 79 and the parameter of interest (or variable if Smatch cannot determine the 80 function parameter). 83 to determine which parameter of that function relates to the parameter of the 89 at get_user_pages_fast with parameter 0 of that function containing user data. 91 which parameter of get_futex_key provided the data of interest. In these cases 181 note that due to limitations in parameter tracking some annotations will be
|
/illumos-gate/usr/src/cmd/bnu/ |
H A D | Config | 29 # <parameter>=<value> 31 # where <parameter> is the name of one of the configurable parameters, 32 # and <value> is the value to be assigned to that parameter. 39 # <parameter> <value>
|
/illumos-gate/usr/src/cmd/cmd-inet/sbin/dhcpagent/ |
H A D | dhcpagent.dfl | 33 # the interface name to the parameter name. For example, to make 61 # By uncommenting the following parameter-value pairs, all managed 76 # behavior, set and uncomment the following parameter-value pair. 78 # DISCOVERs, which is formally specified in RFC 2131. This parameter 86 # identifier, set and uncomment the following parameter-value pair. 133 # uncomment the following parameter to indicate a domain name to be used by 142 # the following parameter to indicate that a returned DHCPv4 DNSdmain or the 164 # By default, a parameter request list requesting a subnet mask (1), 168 # can be changed by altering the following parameter-value pair. The 175 # The default DHCPv6 parameter request list has preference (7), unicast (12), [all …]
|
/illumos-gate/usr/src/uts/common/smbsrv/ndl/ |
H A D | srvsvc.ndl | 754 * Windows NT/2000/XP: The parameter order is as follows. 766 * Windows 95/98/Me: The calling application must use the cbBuffer parameter 768 * pbBuffer parameter. (The cbBuffer parameter replaces the prefmaxlen 769 * parameter.) Neither a user name parameter nor a resume handle parameter is 770 * available on this platform. Therefore, the parameter list is as follows. 783 * remote server on which the function is to execute. If this parameter is 789 * for which information is to be returned. If this parameter is NULL, 794 * information is to be returned. If this parameter is NULL, NetSessionEnum 798 * [in] Specifies the information level of the data. This parameter can be 803 * The bufptr parameter points to an array of SESSION_INFO_0 [all …]
|
/illumos-gate/usr/src/lib/libsqlite/src/ |
H A D | sqlite.h.in | 97 ** the callback function specified by the 3rd parameter is 103 ** The 4th parameter is an arbitrary pointer that is passed 104 ** to the callback function as its first parameter. 106 ** The 2nd parameter to the callback function is the number of 107 ** columns in the query result. The 3rd parameter to the callback 109 ** The 4th parameter to the callback is an array of strings holding 169 #define SQLITE_RANGE 25 /* 2nd parameter to sqlite_bind out of range */ 233 /* If the parameter to this routine is one of the return value constants 426 ** is returned in the in the errmsg parameter of sqlite_open() when 470 ** parameter is non-negative, the type of the result will be the [all …]
|
/illumos-gate/usr/src/lib/libc/i386/gen/ |
H A D | _mul64.S | 33 / a b parameter A 34 / x c d parameter B
|
/illumos-gate/usr/src/cmd/svr4pkg/libinst/ |
H A D | sml.c | 1450 SML_PARAM *parameter; in smlSetParam() local 1503 parameter = (SML_PARAM *)calloc(1, sizeof (SML_PARAM)); in smlSetParam() 1504 bzero(parameter, sizeof (SML_PARAM)); in smlSetParam() 1505 parameter->name = strdup(name); in smlSetParam() 1506 parameter->value = strdup(value); in smlSetParam() 1511 (void) memcpy(&(tag->params[tag->params_num - 1]), parameter, in smlSetParam() 1513 free(parameter); in smlSetParam() 2731 SML_PARAM *parameter; in _smlReadTag() local 2967 parameter = (SML_PARAM *)calloc(1, sizeof (SML_PARAM)); in _smlReadTag() 2968 bzero(parameter, sizeof (SML_PARAM)); in _smlReadTag() [all …]
|
/illumos-gate/usr/src/cmd/perl/contrib/Sun/Solaris/Task/pod/ |
H A D | Task.pod | 29 The C<$project> parameter must be a valid project ID and the C<$flags> 30 parameter must be C<TASK_NORMAL> or C<TASK_FINAL>. The parameters are passed
|
/illumos-gate/usr/src/lib/libslp/javalib/com/sun/slp/ |
H A D | ClientLib_en.properties | 68 # message in Assert when a null parameter is detected. 71 null_parameter = Null parameter: {0}. 117 null_or_empty_vector = Null or empty vector parameter: {0} 137 lifetime_error = Lifetime parameter is out of range 0-65535 142 null_locale_error = Null locale parameter. 161 null_string_parameter = Null or empty string parameter: {0}
|
/illumos-gate/usr/src/cmd/cmd-inet/etc/ |
H A D | ipsecalgs | 39 # [parameter,parameter..]|[flags]
|
H A D | ipqosconf.1.sample | 37 # Before this configuration file can be applied the sport parameter of the 39 # service whose traffic you wish to apply EF to and the uid parameter of the
|
/illumos-gate/usr/src/cmd/sendmail/ |
H A D | Makefile.cmd | 37 CERRWARN += -_gcc=-Wno-unused-but-set-parameter
|
/illumos-gate/usr/src/cmd/sendmail/cf/feature/ |
H A D | nocanonify.m4 | 23 `errprint(`*** ERROR: unknown parameter '"defn(`_ARG_')"` for FEATURE(`nocanonify')
|