HomeSort by: relevance | last modified time | path
    Searched defs:fake (Results 1 - 25 of 34) sorted by relevancy

1 2

  /src/crypto/external/apache2/openssl/dist/test/
run_tests.pl 286 # Fake TAP::Harness in case it's not loaded
287 package TAP::Harness::fake;
325 $package = 'TAP::Harness::fake';
  /src/crypto/external/bsd/openssl/dist/test/
run_tests.pl 259 # Fake TAP::Harness in case it's not loaded
260 package TAP::Harness::fake;
298 $package = 'TAP::Harness::fake';
  /src/crypto/external/bsd/heimdal/dist/admin/
ktutil.c 124 char *fake[3]; local
125 fake[0] = argv[0];
126 fake[1] = shelp;
127 fake[2] = NULL;
128 (*c->func)(2, fake);
  /src/external/bsd/kyua-cli/dist/utils/process/
status_test.cpp 98 const status fake = status::fake_exited(123); local
99 ATF_REQUIRE_EQ(-1, fake.dead_pid());
100 ATF_REQUIRE(fake.exited());
101 ATF_REQUIRE_EQ(123, fake.exitstatus());
102 ATF_REQUIRE(!fake.signaled());
109 const status fake = status::fake_signaled(567, true); local
110 ATF_REQUIRE_EQ(-1, fake.dead_pid());
111 ATF_REQUIRE(!fake.exited());
112 ATF_REQUIRE(fake.signaled());
113 ATF_REQUIRE_EQ(567, fake.termsig())
    [all...]
  /src/external/mpl/bind/dist/tests/isc/
ratelimiter_test.c 163 isc_rlevent_t *fake = isc_mem_get(mctx, sizeof(*fake)); local
175 *fake = (isc_rlevent_t){ .link = ISC_LINK_INITIALIZER };
176 isc_loop_attach(mainloop, &fake->loop);
177 isc_ratelimiter_attach(rl, &fake->rl);
178 assert_int_equal(isc_ratelimiter_dequeue(rl, &fake), ISC_R_NOTFOUND);
179 isc_loop_detach(&fake->loop);
180 isc_ratelimiter_detach(&fake->rl);
181 isc_mem_put(mctx, fake, sizeof(*fake));
    [all...]
  /src/external/bsd/nvi/dist/vi/
v_search.c 72 static EXCMDLIST fake = { .name = L("search") }; local
124 * Build a fake ex command structure.
187 * up the fake ex command.
206 ex_badaddr(sp, &fake,
  /src/sbin/umount/
umount.c 79 static int dflag, fake, verbose; variable
129 fake = 1;
286 name, fake ? "fake " : "", mntpt);
287 /* put this before the test of FAKE */
290 if (fake) {
296 (fake && OK < 0) ? ": would fail" : "");
299 if (fake)
  /src/crypto/external/bsd/heimdal/dist/lib/kadm5/
iprop-log.c 579 char *fake[3]; local
580 fake[0] = argv[0];
581 fake[1] = shelp;
582 fake[2] = NULL;
583 (*c->func)(2, fake);
  /src/crypto/external/bsd/heimdal/dist/lib/sl/
sl.c 380 char *fake[3]; local
381 fake[0] = argv[0];
382 fake[1] = help;
383 fake[2] = NULL;
384 (*c->func)(2, fake);
  /src/external/gpl3/binutils/dist/gas/config/
tc-pj.c 143 /* Handler for the ipush fake opcode,
174 pj_opc_info_t * fake = XNEW (pj_opc_info_t); local
176 fake->opcode = -1;
177 fake->opcode_next = -1;
178 fake->u.func = func;
179 str_hash_insert (opcode_hash_control, name, fake, 0);
206 /* Insert the only fake opcode. */
267 /* It's a fake opcode. Dig out the args and pretend that was
tc-tic54x.c 643 if (startswith (parent->name, ".fake"))
706 char fake[] = ".fake_stagNNNNNNN"; local
707 sprintf (fake, ".fake_stag%d", struct_count++);
708 current_stag->sym = symbol_new (fake, absolute_section,
739 startswith (current_stag->name, ".fake") ? "" : current_stag->name;
946 char fake[] = ".fake_fieldNNNNN"; local
948 sprintf (fake, ".fake_field%d", fieldno++);
949 stag_add_field (current_stag, fake,
  /src/external/gpl3/binutils.old/dist/gas/config/
tc-pj.c 143 /* Handler for the ipush fake opcode,
174 pj_opc_info_t * fake = XNEW (pj_opc_info_t); local
176 fake->opcode = -1;
177 fake->opcode_next = -1;
178 fake->u.func = func;
179 str_hash_insert (opcode_hash_control, name, fake, 0);
206 /* Insert the only fake opcode. */
267 /* It's a fake opcode. Dig out the args and pretend that was
tc-tic54x.c 643 if (startswith (parent->name, ".fake"))
706 char fake[] = ".fake_stagNNNNNNN"; local
707 sprintf (fake, ".fake_stag%d", struct_count++);
708 current_stag->sym = symbol_new (fake, absolute_section,
739 startswith (current_stag->name, ".fake") ? "" : current_stag->name;
946 char fake[] = ".fake_fieldNNNNN"; local
948 sprintf (fake, ".fake_field%d", fieldno++);
949 stag_add_field (current_stag, fake,
  /src/crypto/external/bsd/openssh/dist/
auth.c 687 static struct passwd fake; local
693 return (&fake);
695 memset(&fake, 0, sizeof(fake));
696 fake.pw_name = __UNCONST("NOUSER");
697 fake.pw_passwd = xstrdup("$2a$10$"
699 for (cp = fake.pw_passwd + 7; *cp != '\0'; cp++)
701 fake.pw_gecos = __UNCONST("NOUSER");
702 fake.pw_uid = (uid_t)-1;
703 fake.pw_gid = (gid_t)-1
    [all...]
auth-pam.c 1010 char *fake; local
1035 fake = fake_password(*resp);
1036 if ((r = sshbuf_put_cstring(buffer, fake)) != 0)
1038 free(fake);
1379 char *fake = NULL; local
1395 sshpam_password = fake = fake_password(password);
1405 free(fake);
  /src/sys/external/bsd/drm2/dist/drm/i915/
i915_gpu_error.c 1339 struct i915_vma fake = { local
1346 return i915_vma_coredump_create(gt, &fake, name, compress);
  /src/lib/libpuffs/
puffs_priv.h 178 } fake; member in union:puffs_cc::__anon147
191 #define pcc_func pcc_u.fake.func
192 #define pcc_farg pcc_u.fake.farg
  /src/external/ibm-public/postfix/dist/src/smtp/
smtp_proto.c 304 SMTP_RESP fake; local
395 SMTP_RESP_FAKE(&fake, "4.7.0"),
571 SMTP_RESP_FAKE(&fake, "5.4.6"),
576 SMTP_RESP_FAKE(&fake, "4.4.6"),
650 SMTP_RESP_FAKE(&fake, "5.6.7"),
692 SMTP_RESP_FAKE(&fake, "5.7.30"),
880 SMTP_RESP_FAKE(&fake, "5.7.10"),
933 SMTP_RESP_FAKE(&fake, "5.7.30"),
940 SMTP_RESP_FAKE(&fake, "4.7.4"),
945 SMTP_RESP_FAKE(&fake, "4.7.5")
984 SMTP_RESP fake; local
1612 SMTP_RESP fake; local
1704 SMTP_RESP fake; local
2656 SMTP_RESP fake; local
    [all...]
  /src/libexec/ld.elf_so/
rtld.c 105 /* Initialize a fake symbol for resolving undefined weak references. */
1881 Needed_Entry fake; local
1885 fake.next = NULL;
1886 fake.obj = __UNCONST(obj);
1887 fake.name = 0;
1890 def = _rtld_symlook_needed(name, &hash, &fake, &defobj,
  /src/lib/libc/stdio/
vfwprintf.c 163 FILE fake; local
170 _FILEEXT_SETUP(&fake, &fakeext);
171 memset(WCIO_GET(&fake), 0, sizeof(struct wchar_io_data));
174 fake._flags = fp->_flags & ~__SNBF;
175 fake._file = fp->_file;
176 fake._cookie = fp->_cookie;
177 fake._write = fp->_write;
178 fake._flush = fp->_flush;
181 fake._bf._base = fake._p = buf
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
gcov.cc 102 unsigned int fake : 1; member in struct:arc_info
294 /* The graph contains at least one fake incoming edge. */
2012 arc->fake = !!(flags & GCOV_ARC_FAKE);
2023 if (arc->fake)
2048 /* We have a fake exit from this block. The other
2053 if (!arc->fake && !arc->fall_through)
2324 if (!arc->fake)
2341 /* If there is only one non-fake exit, it is an
2344 if (!arc->fake)
2532 /* Now mark all the blocks reachable via non-fake edges *
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
gcov.cc 98 unsigned int fake : 1; member in struct:arc_info
261 /* The graph contains at least one fake incoming edge. */
1912 arc->fake = !!(flags & GCOV_ARC_FAKE);
1923 if (arc->fake)
1948 /* We have a fake exit from this block. The other
1953 if (!arc->fake && !arc->fall_through)
2187 if (!arc->fake)
2204 /* If there is only one non-fake exit, it is an
2207 if (!arc->fake)
2395 /* Now mark all the blocks reachable via non-fake edges *
    [all...]
  /src/external/gpl3/binutils/dist/bfd/
elf32-spu.c 2818 Elf_Internal_Sym *fake = bfd_zmalloc (sizeof (*fake)); local
2819 if (fake == NULL)
2821 fake->st_value = val;
2822 fake->st_shndx
2824 sym = fake;
2914 Elf_Internal_Sym *fake; local
2917 fake = bfd_zmalloc (sizeof (*fake));
2918 if (fake == NULL
    [all...]
  /src/external/gpl3/binutils.old/dist/bfd/
elf32-spu.c 2818 Elf_Internal_Sym *fake = bfd_zmalloc (sizeof (*fake)); local
2819 if (fake == NULL)
2821 fake->st_value = val;
2822 fake->st_shndx
2824 sym = fake;
2914 Elf_Internal_Sym *fake; local
2917 fake = bfd_zmalloc (sizeof (*fake));
2918 if (fake == NULL
    [all...]
  /src/external/gpl3/gdb.old/dist/bfd/
elf32-spu.c 2814 Elf_Internal_Sym *fake = bfd_zmalloc (sizeof (*fake)); local
2815 if (fake == NULL)
2817 fake->st_value = val;
2818 fake->st_shndx
2820 sym = fake;
2910 Elf_Internal_Sym *fake; local
2913 fake = bfd_zmalloc (sizeof (*fake));
2914 if (fake == NULL
    [all...]

Completed in 178 milliseconds

1 2