Searched refs:found (Results 1 - 25 of 735) sorted by relevance

1234567891011>>

/freebsd-10-stable/contrib/bmake/
H A Dfind_lib.sh6 found=`nm $lib | egrep "$re"`
7 case "$found" in
9 *) echo "$lib: $found";;
/freebsd-10-stable/cddl/usr.sbin/dtrace/tests/tools/
H A Dexclude.sh189 # The second dtrace -G invocation returns an error with "no probes found," which
/freebsd-10-stable/contrib/ncurses/
H A Dmk-0th.awk40 found = 0;
62 if ( found == 0 )
70 found = 1
72 found = 2
83 if ( found == 1 )
/freebsd-10-stable/contrib/netbsd-tests/fs/
H A Dh_funcs.subr51 found=yes
53 found=no
61 found=no
64 found=yes
72 [ ${found} = yes ] || \
/freebsd-10-stable/contrib/atf/atf-c/detail/
H A Duser.c50 bool found; local
58 found = false;
59 for (i = 0; !found && i < ngroups; i++)
61 found = true;
62 return found;
/freebsd-10-stable/usr.bin/what/
H A Dwhat.c58 bool found, qflag, sflag; local
78 found = false;
82 found = true;
95 found = true;
99 exit(found ? 0 : 1);
112 bool found; local
115 found = false;
132 found = true;
136 return (found);
/freebsd-10-stable/contrib/gdb/gdb/gdbserver/
H A Dtarget.c31 struct thread_info *found; local
35 found = (struct thread_info *) find_inferior_id (&all_threads,
40 found = NULL;
46 found = (struct thread_info *) find_inferior_id (&all_threads,
49 if (found == NULL)
50 found = (struct thread_info *) find_inferior_id (&all_threads,
54 if (found == NULL)
57 current_inferior = found;
/freebsd-10-stable/contrib/ntp/ntpdc/
H A Dnl.pl3 $found = 0;
11 $found = 1;
16 if ($found) {
37 $found = 0 if $last;
H A Dnl.pl.in3 $found = 0;
11 $found = 1;
16 if ($found) {
37 $found = 0 if $last;
/freebsd-10-stable/contrib/gcc/
H A Dtree-nrv.c109 tree found = NULL; local
143 if (found != NULL)
145 /* If we found a return statement using a different variable
148 if (found != ret_expr)
152 found = ret_expr;
156 if (TREE_CODE (found) != VAR_DECL
157 || TREE_THIS_VOLATILE (found)
158 || DECL_CONTEXT (found) != current_function_decl
159 || TREE_STATIC (found)
160 || TREE_ADDRESSABLE (found)
[all...]
/freebsd-10-stable/contrib/telnet/libtelnet/
H A Dgenget.c81 char **c, **found; local
87 found = 0;
93 if (found)
95 found = c;
97 return(found);
/freebsd-10-stable/crypto/heimdal/appl/telnet/libtelnet/
H A Dgenget.c80 char **c, **found; local
86 found = 0;
92 if (found)
94 found = c;
96 return(found);
/freebsd-10-stable/lib/libc/i386/string/
H A Dwmemchr.S34 * the character `c', return a pointer to it if found, or NULL on
52 je found
71 found: movl %edi,%eax label
76 jmp found
78 jmp found
80 jmp found
82 jmp found
84 jmp found
86 jmp found
88 jmp found
[all...]
/freebsd-10-stable/contrib/ncurses/ncurses/tinfo/
H A Dname_match.c84 int code, found; local
93 found = FALSE;
97 found = TRUE;
101 if (found)
H A Dmake_keys.c52 bool found = FALSE; local
55 found = TRUE;
59 if (!found) {
62 found = TRUE;
67 return found ? n : UNKNOWN;
/freebsd-10-stable/contrib/libucl/src/
H A Ducl_hash.c103 ucl_hash_node_t *found; local
108 HASH_FIND (hh, hashlin->buckets, key, keylen, found);
110 if (found) {
111 return found->data;
119 ucl_hash_node_t *found; local
121 HASH_FIND (hh, hashlin->buckets, obj->key, obj->keylen, found);
123 if (found) {
124 HASH_DELETE (hh, hashlin->buckets, found);
/freebsd-10-stable/contrib/binutils/
H A Dsymlink-tree60 found=
63 found=yes
66 if [ -z "${found}" ]; then
/freebsd-10-stable/contrib/gdb/
H A Dsymlink-tree60 found=
63 found=yes
66 if [ -z "${found}" ]; then
/freebsd-10-stable/contrib/libucl/tests/
H A Dtest_generate.c33 const ucl_object_t *found; local
120 found = ucl_lookup_path (obj, "key4.1");
121 assert (found != NULL && ucl_object_toint (found) == 10);
123 found = ucl_lookup_path (obj, ".key4.1");
124 assert (found != NULL && ucl_object_toint (found) == 10);
126 found = ucl_lookup_path (obj, ".key4........1...");
127 assert (found != NULL && ucl_object_toint (found)
[all...]
/freebsd-10-stable/lib/libpam/modules/pam_ftpusers/
H A Dpam_ftpusers.c60 int pam_err, found, allow; local
71 found = 0;
77 while (!found && (line = fgetln(f, &len)) != NULL) {
87 found = 1;
100 for (mem = grp->gr_mem; mem && *mem && !found; ++mem)
102 found = 1;
106 if (found)
/freebsd-10-stable/sbin/nvmecontrol/
H A Ddevlist.c67 int ch, ctrlr, fd, found, ret; local
77 found = 0;
93 found++;
112 if (found == 0)
113 printf("No NVMe controllers found.\n");
/freebsd-10-stable/sys/geom/label/
H A Dg_label_disk_ident.c51 int ident_len, found, i; local
66 for (i = 0, found = 0; classes_pass[i] != NULL; i++)
68 found = 1;
71 if (!found)
/freebsd-10-stable/crypto/openssl/crypto/bn/
H A Dbn_depr.c76 int found = 0; local
89 found = 1;
91 if (!found && (ret == NULL) && (rnd != NULL))
93 return (found ? rnd : NULL);
/freebsd-10-stable/usr.sbin/cron/lib/
H A Denv.c83 register int count, found; local
89 * also set 'found' to -1 or index of entry if already in here.
91 found = -1;
94 found = count;
98 if (found != -1) {
103 q = envp[found];
104 if ((envp[found] = strdup(envstr)) == NULL) {
105 envp[found] = q;
/freebsd-10-stable/crypto/heimdal/lib/krb5/
H A Dacl.c208 krb5_boolean found; local
218 found = acl_match_acl(context, acl, string);
219 acl_free_list(acl, !found);
220 if (found) {
255 krb5_boolean found; local
276 found = FALSE;
281 found = TRUE;
288 acl_free_list(acl, !found);
289 if (found) {

Completed in 285 milliseconds

1234567891011>>