Searched refs:list (Results 201 - 225 of 536) sorted by relevance

1234567891011>>

/osnet-11/usr/src/lib/pkcs11/libpkcs11/common/
H A DmetaGlobal.h129 /* This always inserts into the head of the list */
130 #define INSERT_INTO_LIST(list, item) \
132 if ((list) == NULL) { \
135 (list) = (item); \
137 (item)->next = (list); \
139 (list)->prev = (item); \
140 (list) = (item); \
146 * Remove item from list
148 #define REMOVE_FROM_LIST(list, item) \
150 /* item is at the beginning of the list */ \
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Net/
H A DPOP3.pm182 sub list subroutine
184 @_ == 1 || @_ == 2 or croak 'usage: $pop3->list( [ MSGNUM ] )';
377 my $msgnums = $pop->list; # hashref of msgnum => size
428 empty list.
467 =item list ( [ MSGNUM ] )
469 If called with an argument the C<list> returns the size of the message
495 Returns a list of two elements. These are the number of undeleted
500 Returns a list of two elements. These are the number of new messages
H A DNNTP.pm257 sub list subroutine
259 @_ == 1 or croak 'usage: $nntp->list()';
741 empty list.
762 client will obtain the C<MSGID> from a list provided by the C<newnews>
806 In an array context the return value is a list containing, the number
843 =item list ()
853 pattern or a reference to a list of distribution patterns.
854 The result is the same as C<list>, but the
861 to a list of group patterns. C<DISTRIBUTIONS> is either a distribution
862 pattern or a reference to a list o
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A Dconstant.pm110 my @list = @_;
111 *$full_name = sub () { @list };
220 constant is evaluated in list context. This may produce surprises:
225 The first line above defines C<TIMESTAMP> as a 9-element list, as
226 returned by localtime() in list context. To set it to the string
271 print E2BIG, "\n"; # something like "Arg list too long"
304 In the current version of Perl, list constants are not inlined
310 A constant with a name in the list C<STDIN STDOUT STDERR ARGV ARGVOUT
H A DExporter.pm204 but with list entries that are syntactically distinct from symbol names.
215 If any of the entries in an import list begins with !, : or / then
216 the list is treated as a series of specifications which either add to
217 or delete from the list of names to import. They are processed left to
222 [!]:tag All names in $EXPORT_TAGS{tag} anonymous list
226 list of names to import. If the first specification is a deletion it
343 with a list of the failed symbols:
347 If the export_fail method returns an empty list then no error is
349 list is not empty then an error is generated for each symbol and the
351 simply returns the list unchange
[all...]
H A DMemoize.pm210 my $context = {S => 'scalar', L => 'list'}->{$context};
258 _crap_out($info->{NAME}, 'list') unless $cache;
266 # Otherwise, we cached an array containing the returned list:
569 that it computed for one argument list and return it as the result of
570 calling the function with the other argument list, even if the
626 The calling context of the function (scalar or list context) is
628 function will treat its arguments differently in list context than it
631 a list context, a normalizer should still return a single string.
642 actually I<two> caches, one for scalar values and one for list values.
644 cached in one hash, and when your function is called in list contex
[all...]
H A Dvars.pm64 in the list, allowing you to use them under "use strict", and
/osnet-11/usr/src/lib/libc/port/gen/
H A Dprivlib.c175 * to present a sorted list of privileges
404 * required to terminate the list of privileges with NULL.
721 * Use binary search on the ordered list.
726 char *const *list; local
734 list = d->pd_privnames;
743 int res = strcasecmp(name, list[order[mid]]);
768 char *const *list = d->pd_setnames; local
774 if (strcasecmp(list[i], name) == 0)
790 priv_bynum(int i, int n, char **list) argument
795 return (list[
[all...]
/osnet-11/usr/src/lib/libdtrace_jni/common/
H A Ddtrace_jni.c391 * Add the compiled program to a list of programs the API expects to enable.
1499 "Could not allocate process list");
1520 "Failed to add process to process list");
1547 "Could not allocate process list");
1561 "Failed to add process to process list");
1576 * param list: an empty list to populate (this function empties the list if it
1578 * param filter: a ProbeDescription instance; the list will include only probes
1583 jobject obj, jobject list, jobjec
1582 Java_org_opensolaris_os_dtrace_LocalConsumer__1listProbes(JNIEnv *env, jobject obj, jobject list, jobject filter) argument
1589 Java_org_opensolaris_os_dtrace_LocalConsumer__1listProbeDetail(JNIEnv *env, jobject obj, jobject list, jobject filter) argument
1596 dtj_list_probes(JNIEnv *env, jobject obj, jobject list, jobject filter, dtrace_probe_f *func) argument
1764 Java_org_opensolaris_os_dtrace_LocalConsumer__1listCompiledProbes(JNIEnv *env, jobject obj, jobject list, jobject program) argument
1771 Java_org_opensolaris_os_dtrace_LocalConsumer__1listCompiledProbeDetail( JNIEnv *env, jobject obj, jobject list, jobject program) argument
1779 dtj_list_compiled_probes(JNIEnv *env, jobject obj, jobject list, jobject program, dtrace_probe_f *func) argument
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/I18N/
H A DLangTags.pm118 Returns a list of whatever looks like formally valid language tags
309 Returns a list of language tags that are superordinate tags to $lang1
317 super_languages("en") is empty-list, ()
319 super_languages("i-cherokee") is empty-list, ()
322 If $lang1 is not a valid language tag, returns empty-list in
323 a list context, undef in a scalar context.
370 notably, "C" and "POSIX"), this returns empty-list in a list context,
588 This function returns empty-list if given anything other than a formally
638 # Only large ("national") languages make it in this list
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/gnulib/
H A Dfnmatch_loop.c1003 /* Skip over all characters of the list. */
1030 } *list = NULL; local
1031 struct patternlist **lastp = &list;
1037 /* Parse the pattern. Store the individual parts in the list. */
1056 /* Skip over all characters of the list. */
1103 assert (list != NULL);
1120 if (FCT (list->str, string, rs, no_leading_period,
1141 while ((list = list->next) != NULL);
1155 pattern list an
[all...]
/osnet-11/usr/src/lib/krb5/plugins/kdb/db2/libdb2/hash/
H A Dhash_page.c15 * notice, this list of conditions and the following disclaimer.
17 * notice, this list of conditions and the following disclaimer in the
1378 } list[100]; local
1385 /* Find page in list. */
1387 if (list[i].pgno == pgno)
1391 list[last].times = inout;
1392 list[last].pgno = pgno;
1395 list[i].times = inout;
1396 if (list[i].times == 0) {
1398 list[
[all...]
/osnet-11/usr/src/lib/fm/libfmnotify/common/
H A Dlibfmnotify.c335 nd_seq_search(char *key, char **list, uint_t nelem) argument
338 if (strcmp(key, list[i]) == 0)
344 * This function takes a single string list and splits it into
350 nd_split_list(nd_hdl_t *nhdl, char *list, char *delim, char ***arr, argument
356 tmpstr = strdup(list);
367 (*arr)[0] = strdup(list);
369 tmpstr = strdup(list);
468 * for the committed ireport.* events. For FMA list.* events, the MSG ID is
534 * For FMA list.* events we just pull it out of the the event nvlist.
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/t/
H A Dhtmlview.t77 <p>Here is a list of methods</p>
94 <p>This is a list within a list</p>
/osnet-11/usr/src/lib/libcmd/common/
H A Duname.c61 "[f:list?List all \bsysinfo\b(2) names and values, one per line.]"
261 int list = 0; local
283 list = 1;
358 else if (list)
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/IPC/SysV/
H A DSemaphore.pm232 C<OPLIST> is a list of operations to pass to C<semop>. C<OPLIST> is
258 or a list of I<name>-I<value> pairs.
262 Sets all values in the semaphore set to those given on the C<VALUES> list.
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/File/
H A DPath.pm25 to a list of paths to create,
40 It returns a list of all directories (including intermediates, determined
61 a list of roots. All of the files and directories
136 # $paths -- either a path string or ref to list of paths
/osnet-11/usr/src/lib/sun_fc/common/
H A DTgtFCHBA.cc221 void TgtFCHBA::loadAdapters(vector<HBA*> &list) argument
300 throw IOError("Unable to build HBA list");
324 list.insert(list.begin(), hba);
/osnet-11/usr/src/lib/libdscfg/common/
H A Dcfg.h69 int cfg_get_srtdsec(CFGFILE *cfg, char ***list,
/osnet-11/usr/src/grub/grub2/grub-core/commands/
H A Dextcmd.c21 #include <grub/list.h>
/osnet-11/usr/src/grub/grub2/include/grub/
H A Dcryptodisk.h24 #include <grub/list.h>
/osnet-11/usr/src/lib/brand/labeled/zone/
H A Dcommon.ksh288 profPwd=$(ldapclient list | \
371 l_zonepath=$(zoneadm -z $ZONENAME list -p|cut -d : -f4)
373 typeset zonestate=$(zoneadm -z $ZONENAME list -p | cut -d : -f 3)
416 typeset l_zonepath=$(zoneadm -z $ZONENAME list -p|cut -d : -f4)
/osnet-11/usr/src/lib/brand/solaris10/zone/
H A Dcommon.ksh291 ZONEUUID=`zoneadm -z $ZONENAME list -p | nawk -F: '{print $5}'`
458 elif /usr/sbin/zfs list -H -o name ${zone.ROOT_ds}/zbe-0 \
464 /usr/sbin/zfs list -H -o name -r -d 1 \
614 if /usr/sbin/zfs list "${zone.ROOT_ds}/zbe-0" >/dev/null 2>&1
/osnet-11/usr/src/cmd/perl/contrib/Sun/Solaris/Exacct/File/
H A DFile.xs33 # The parameters are the filename, the open mode and a list of optional
186 /* In a list contect, return the type and catalog. */
223 # Write the passed list of ::Objects to the file.
/osnet-11/usr/src/cmd/ldap/ns_ldap/
H A Dldaplist.c92 "\t -l list all the attributes found in entry.\n"
94 "\t -d list attributes for the database instead of its entries\n"
96 "\t -g list the database mappings.\n"
198 list(char *database, char *ldapfilter, char **ldapattribute, function
520 rc = list("passwd", ldapfilter, ldapattribute,
540 rc1 = list("hosts", ldapfilter, ldapattribute,
562 * to list the directory attribute instead of the entries
580 if (rc = list(database, ldapfilter, ldapattribute, &err, udata))

Completed in 60 milliseconds

1234567891011>>