Searched refs:name (Results 276 - 300 of 6474) sorted by relevance

<<11121314151617181920>>

/freebsd-10.1-release/tools/tools/mtxstat/
H A Dmtxstat.pl15 # 3. The name of the author may not be used to endorse or promote products
89 $entry{$_} = ($_ eq 'name') ? shift(@fields) : 0.0 + shift(@fields);
92 $entry{'name'} =~ s/^(\S+)\s+\((.*)\)$/$2/;
94 my $name = $entry{'name'};
95 if ($data{$name}) {
96 if ($entry{'max'} > $data{$name}->{'max'}) {
97 $data{$name}->{'max'} = $entry{'max'};
99 $data{$name}->{'total'} += $entry{'total'};
100 $data{$name}
[all...]
/freebsd-10.1-release/contrib/bmake/
H A Dsetenv.c17 * 4. Neither the name of the University nor the names of its contributors
50 * Returns pointer to value associated with name, if any, else NULL.
51 * Sets offset to be the offset of the name/value combination in the
53 * Explicitly removes '=' in argument name.
58 __findenv(name, offset)
59 register char *name;
66 for (C = name, len = 0; *C && *C != '='; ++C, ++len);
68 if (!strncmp(*P, name, len))
78 * Set the value of the environmental variable "name" to be
81 setenv(name, valu
[all...]
/freebsd-10.1-release/sys/sys/
H A Dpctrie.h38 #define PCTRIE_DEFINE(name, type, field, allocfn, freefn) \
48 name##_PCTRIE_VAL2PTR(uint64_t *val) \
58 name##_PCTRIE_PTR2VAL(struct type *ptr) \
65 name##_PCTRIE_INSERT(struct pctrie *ptree, struct type *ptr) \
68 return pctrie_insert(ptree, name##_PCTRIE_PTR2VAL(ptr), \
73 name##_PCTRIE_LOOKUP(struct pctrie *ptree, uint64_t key) \
76 return name##_PCTRIE_VAL2PTR(pctrie_lookup(ptree, key)); \
80 name##_PCTRIE_LOOKUP_LE(struct pctrie *ptree, uint64_t key) \
83 return name##_PCTRIE_VAL2PTR(pctrie_lookup_le(ptree, key)); \
87 name##_PCTRIE_LOOKUP_G
[all...]
/freebsd-10.1-release/cddl/contrib/opensolaris/lib/pyzfs/common/
H A Ddataset.py18 # information: Portions Copyright [yyyy] [name of copyright owner]
42 __slots__ = "name", "number", "type", "default", "attr", "validtypes", \
51 self.name = t[0]
72 for name, t in zfs.ioctl.get_proptable().iteritems():
73 proptable[name] = Property(t)
74 del name, t
76 def getpropobj(name):
78 name string. It can be the full name, or the column name
[all...]
/freebsd-10.1-release/usr.sbin/pkg_install/add/
H A Dextract.c54 rollback(const char *name, const char *home, PackingList start, PackingList stop) argument
64 snprintf(try, FILENAME_MAX, "%s/%s", dir, q->name);
65 if (make_preserve_name(bup, FILENAME_MAX, name, try) && fexists(bup)) {
74 prefix = q->name;
75 if (q->name == NULL)
76 q->name = prefix;
77 else if (strcmp(q->name, "."))
78 dir = q->name;
149 PkgName = p->name;
151 printf("extract: Package name i
[all...]
/freebsd-10.1-release/contrib/ipfilter/lib/
H A Dfacpri.c30 char *name; member in struct:table
74 * map a facility number to its name
86 return facs[j].name;
88 for (i = 0; facs[i].name; i++)
90 return facs[i].name;
97 * map a facility name to its number
100 fac_findname(name)
101 char *name;
105 for (i = 0; facs[i].name; i++)
106 if (!strcmp(facs[i].name, nam
[all...]
/freebsd-10.1-release/contrib/gdb/gdb/
H A Dcp-support.c38 /* Functions related to demangled name parsing. */
40 static const char *find_last_component (const char *name);
42 static unsigned int cp_find_first_component_aux (const char *name,
45 static void demangled_name_complaint (const char *name);
81 - Parentheses don't just have to happen at the end of a name: they
82 can occur even if the name in question isn't a function, because
86 demangled name might not end with ')': it could be a const or
100 /* Find the last component of the demangled C++ name NAME. NAME
101 must be a method name including arguments, in order to correctly
105 last component, or NULL if the name ha
108 find_last_component(const char *name) argument
231 cp_find_first_component(const char *name) argument
246 cp_find_first_component_aux(const char *name, int permissive) argument
367 demangled_name_complaint(const char *name) argument
380 cp_entire_prefix_len(const char *name) argument
678 cp_lookup_rtti_type(const char *name, struct block *block) argument
[all...]
/freebsd-10.1-release/bin/pkill/tests/
H A Dpgrep-F_test.sh8 name="pgrep -F <pidfile>"
18 echo "ok - $name"
20 echo "not ok - $name"
H A Dpgrep-P_test.sh8 name="pgrep -P <ppid>"
17 echo "ok - $name"
19 echo "not ok - $name"
H A Dpgrep-i_test.sh8 name="pgrep -i"
19 echo "ok - $name"
21 echo "not ok - $name"
H A Dpgrep-n_test.sh8 name="pgrep -n"
18 echo "ok - $name"
20 echo "not ok - $name"
H A Dpgrep-o_test.sh8 name="pgrep -o"
18 echo "ok - $name"
20 echo "not ok - $name"
H A Dpkill-F_test.sh8 name="pkill -F <pidfile>"
19 echo "ok - $name"
22 echo "not ok - $name"
H A Dpkill-i_test.sh8 name="pkill -i"
20 echo "ok - $name"
23 echo "not ok - $name"
/freebsd-10.1-release/contrib/libarchive/libarchive/
H A Darchive_write_set_format_by_name.c45 struct { const char *name; int (*setter)(struct archive *); } names[] = member in struct:__anon1655
78 archive_write_set_format_by_name(struct archive *a, const char *name) argument
82 for (i = 0; names[i].name != NULL; i++) {
83 if (strcmp(name, names[i].name) == 0)
87 archive_set_error(a, EINVAL, "No such format '%s'", name);
/freebsd-10.1-release/contrib/ncurses/ncurses/base/
H A Dlib_initscr.c23 * Except as contained in this notice, the name(s) of the above copyright *
55 NCURSES_CONST char *name; local
67 if ((name = getenv("TERM")) == 0
68 || *name == '\0')
69 name = "unknown";
87 if (newterm(name, stdout, stdin) == 0) {
88 fprintf(stderr, "Error opening terminal: %s.\n", name);
/freebsd-10.1-release/contrib/opie/libopie/
H A Dchallenge.c35 /* Return an OTP challenge string for user 'name'.
54 int opiechallenge FUNCTION((mp, name, ss), struct opie *mp AND char *name AND char *ss)
58 rval = opielookup(mp, name);
60 if (rval) syslog(LOG_DEBUG, "opiechallenge: opielookup(mp, name=%s) returned %d", name, rval);
64 rval = opielock(name);
66 if (rval) syslog(LOG_DEBUG, "opiechallenge: opielock(name=%s) returned %d", name, rval);
/freebsd-10.1-release/contrib/telnet/libtelnet/
H A Dmisc.c17 * 4. Neither the name of the University nor the names of its contributors
68 auth_encrypt_init(char *local, char *remote, const char *name undef1, int server undef1)
73 auth_init(name, server);
76 encrypt_init(name, server);
86 auth_encrypt_user(char *name) argument
90 UserNameRequested = name ? strdup(name) : 0;
/freebsd-10.1-release/crypto/heimdal/appl/telnet/libtelnet/
H A Dmisc.c17 * 4. Neither the name of the University nor the names of its contributors
56 auth_encrypt_init(const char *local, const char *remote, const char *name, argument
62 auth_init(name, server);
65 encrypt_init(name, server);
74 auth_encrypt_user(const char *name) argument
78 UserNameRequested = name ? strdup(name) : 0;
/freebsd-10.1-release/crypto/openssl/util/
H A Dextract-names.pl8 $name = 0;
9 } elsif ($name) {
21 $name = 1;
/freebsd-10.1-release/sys/amd64/include/
H A Dasmacros.h13 * 4. Neither the name of the University nor the names of its contributors
41 * and the equivalent assembly language names. CNAME is given a name as
43 * language name.
55 #define GEN_ENTRY(name) ALIGN_TEXT; .globl CNAME(name); \
56 .type CNAME(name),@function; CNAME(name):
57 #define NON_GPROF_ENTRY(name) GEN_ENTRY(name)
60 #define END(name)
[all...]
/freebsd-10.1-release/sys/ia64/ia64/
H A Diodev_machdep.c99 efi_char *name; local
109 * of the name. That should be the closing nul character (ucs-2)
113 name = malloc(req->namesize, M_TEMP, M_WAITOK | M_ZERO);
114 error = copyin(req->name, name, req->namesize - 2);
116 free(name, M_TEMP);
121 error = efi_var_get(name, &req->vendor, &req->attrib, &req->datasize,
131 free(name, M_TEMP);
138 efi_char *name; local
141 /* Enforce a reasonable minimum size of the name buffe
168 efi_char *name; local
[all...]
/freebsd-10.1-release/sys/netinet/
H A Dicmp_var.h13 * 4. Neither the name of the University nor the names of its contributors
68 #define ICMPSTAT_ADD(name, val) \
69 VNET_PCPUSTAT_ADD(struct icmpstat, icmpstat, name, (val))
70 #define ICMPSTAT_INC(name) ICMPSTAT_ADD(name, 1)
76 #define KMOD_ICMPSTAT_INC(name) \
77 kmod_icmpstat_inc(offsetof(struct icmpstat, name) / sizeof(uint64_t))
/freebsd-10.1-release/usr.bin/getconf/
H A Dfake-gperf.awk27 print "\tconst char *name;";
46 print "\t\tif (strcmp(word, mp->name) == 0)";
55 name = substr($1, 1, length($1) - 1);
57 printf "\t{ \"%s\", %s, 1 },\n", name, $2;
59 printf "\t{ \"%s\", 0, 0 },\n", name, $2;
/freebsd-10.1-release/cddl/contrib/dtracetoolkit/Bin/
H A Djs_calls.d16 * NAME Descriptive name of call
49 this->name = copyinstr(arg2);
50 @calls[basename(copyinstr(arg0)), "func", this->name] = count();
61 this->name = copyinstr(arg1);
63 @calls[this->filename, "obj-new", this->name] = count();
68 this->name = copyinstr(arg1);
69 @calls["<null>", "obj-free", this->name] = count();

Completed in 301 milliseconds

<<11121314151617181920>>