Searched refs:what (Results 1 - 25 of 401) sorted by relevance

1234567891011>>

/freebsd-10-stable/contrib/libstdc++/libsupc++/
H A Deh_exception.cc41 std::exception::what() const throw() function in class:std::exception
44 // and not overriding what() in bad_exception, bad_alloc, etc. In
50 std::bad_exception::what() const throw() function in class:std::bad_exception
H A Dnew_handler.cc51 std::bad_alloc::what() const throw() function in class:std::bad_alloc
/freebsd-10-stable/usr.bin/what/
H A DMakefile4 PROG= what
/freebsd-10-stable/contrib/gdb/gdb/
H A Dproc-why.c108 proc_prettyfprint_why (FILE *file, unsigned long why, unsigned long what, argument
130 proc_prettyfprint_signal (file, what, verbose);
135 proc_prettyfprint_fault (file, what, verbose);
141 proc_prettyfprint_syscall (file, what, verbose);
147 proc_prettyfprint_syscall (file, what, verbose);
152 proc_prettyfprint_signal (file, what, verbose);
157 fprintf (file, "Exit status: %d\n", what);
161 fprintf (file, "Unknown why %ld, what %ld\n", why, what);
172 proc_prettyprint_why (unsigned long why, unsigned long what, in argument
[all...]
H A Dwince-stub.c120 gdb_wince_id what; local
126 if (sockread (huh, s, &what, sizeof (what)) != sizeof (what))
128 while (what_this != what);
143 gdb_wince_id what; local
149 if (sockread (huh, s, &what, sizeof (what)) != sizeof (what))
151 while (what_this != what);
168 getmemory(LPCWSTR huh, int s, gdb_wince_id what, gdb_wince_len *inlen) argument
188 putdword(LPCWSTR huh, int s, gdb_wince_id what, DWORD n) argument
198 putword(LPCWSTR huh, int s, gdb_wince_id what, WORD n) argument
213 putmemory(LPCWSTR huh, int s, gdb_wince_id what, const void *mem, gdb_wince_len len) argument
224 putresult(LPCWSTR huh, gdb_wince_result res, int s, gdb_wince_id what, const void *mem, gdb_wince_len len) argument
[all...]
/freebsd-10-stable/sys/netinet/cc/
H A Dcc_module.h51 #define CCV(ccv, what) \
53 (ccv)->type == IPPROTO_TCP ? &(ccv)->ccvc.tcp->what : \
54 &(ccv)->ccvc.sctp->what \
57 #define CCV(ccv, what) (ccv)->ccvc.tcp->what
/freebsd-10-stable/contrib/libcxxrt/
H A Dstdexcept.cc41 const char* exception::what() const throw() function in class:std::exception
53 const char* bad_alloc::what() const throw() function in class:std::bad_alloc
67 const char* bad_cast::what() const throw() function in class:std::bad_cast
80 const char* bad_typeid::what() const throw() function in class:std::bad_typeid
93 const char* bad_array_new_length::what() const throw() function in class:std::bad_array_new_length
H A Dstdexcept.h42 virtual const char* what() const throw();
56 virtual const char* what() const throw();
68 virtual const char* what() const throw();
81 virtual const char* what() const throw();
91 virtual const char *what() const throw();
/freebsd-10-stable/contrib/sendmail/src/
H A Dshmticklib.c28 ** what -- which variable to increment
35 shmtick(inc_me, what)
37 int what;
66 if (what >= STATUSD_LONGS)
67 what = STATUSD_LONGS - 1;
76 ++(sp->ul[what]);
/freebsd-10-stable/contrib/subversion/subversion/svnserve/
H A Dlog-escape.c50 * 0 <= what < 256... which usually means that you have to cast to
62 static APR_INLINE unsigned char *c2x(unsigned what, unsigned char prefix, argument
66 what = apr_xlate_conv_byte(ap_hdrs_to_ascii, (unsigned char)what);
69 *where++ = c2x_table[what >> 4];
70 *where++ = c2x_table[what & 0xf];
/freebsd-10-stable/contrib/libstdc++/src/
H A Dios_failure.cc46 ios_base::failure::what() const throw() function in class:ios_base::failure
/freebsd-10-stable/contrib/sendmail/libsm/
H A Dsyslogio.c161 ** what -- what information is being set
173 sm_syslogsetinfo(fp, what, valp)
175 int what;
178 switch (what)
194 ** what -- the information type being queried
206 sm_sysloggetinfo(fp, what, valp)
208 int what;
211 switch (what)
/freebsd-10-stable/contrib/libreadline/
H A Dundo.c72 alloc_undo_entry (what, start, end, text)
73 enum undo_code what;
80 temp->what = what;
92 rl_add_undo (what, start, end, text)
93 enum undo_code what;
99 temp = alloc_undo_entry (what, start, end, text);
116 if (release->what == UNDO_DELETE)
131 new = alloc_undo_entry (entry->what, entry->start, entry->end, (char *)NULL);
182 if (rl_undo_list->what
[all...]
/freebsd-10-stable/crypto/openssh/regress/
H A Dmodpipe.c45 enum { MOD_XOR, MOD_AND_OR } what; member in struct:modification
53 char what[16+1]; local
58 what, &m->offset, &m1, &m2)) < 3)
60 if (strcasecmp(what, "xor") == 0) {
65 m->what = MOD_XOR;
67 } else if (strcasecmp(what, "andor") == 0) {
74 m->what = MOD_AND_OR;
78 errx(1, "Invalid modification type \"%s\"", what);
119 switch (mods[i].what) {
/freebsd-10-stable/sys/cddl/contrib/opensolaris/common/zfs/
H A Dzfs_namecheck.c69 zfs_component_namecheck(const char *path, namecheck_err_t *why, char *what) argument
89 *what = *loc;
104 permset_namecheck(const char *path, namecheck_err_t *why, char *what) argument
115 *what = path[0];
120 return (zfs_component_namecheck(&path[1], why, what));
137 dataset_namecheck(const char *path, namecheck_err_t *why, char *what) argument
202 *what = *loc;
294 pool_namecheck(const char *pool, namecheck_err_t *why, char *what) argument
318 *what = *c;
/freebsd-10-stable/contrib/binutils/gas/config/
H A Dobj-ecoff.h67 #define OBJ_PROCESS_STAB(seg, what, string, type, other, desc) \
68 ecoff_stab ((seg), (what), (string), (type), (other), (desc))
/freebsd-10-stable/contrib/libc++/src/
H A Dtypeinfo.cpp40 std::bad_cast::what() const _NOEXCEPT
50 std::bad_typeid::what() const _NOEXCEPT
/freebsd-10-stable/sys/dev/usb/net/
H A Dif_urndisreg.h56 #define URNDIS_LOCK_ASSERT(sc, what) mtx_assert(&(sc)->sc_mtx, (what))
/freebsd-10-stable/contrib/atf/atf-c++/detail/
H A Dexceptions.hpp47 const char* what(void) const throw();
H A Dexceptions_test.cpp94 ATF_REQUIRE(std::string(e.what()).find("System error 1") !=
97 ATF_FAIL(std::string("Got unexpected exception: ") + e.what());
113 ATF_FAIL(std::string("Got unexpected exception: ") + e.what());
128 const std::string msg = e.what();
131 ATF_FAIL(std::string("Got unexpected exception: ") + e.what());
/freebsd-10-stable/contrib/ipfilter/lib/
H A Dload_dstlistnode.c25 char *what; local
52 what = "add";
55 what = "delete";
64 (void) sprintf(msg, "%s lookup node", what);
H A Dload_hashnode.c28 char *what; local
52 what = "add";
55 what = "delete";
63 sprintf(msg, "%s node from lookup hash table", what);
H A Dload_poolnode.c28 char *what; local
51 what = "add";
54 what = "delete";
62 sprintf(msg, "%s pool node(%s/", what,
/freebsd-10-stable/sys/fs/fuse/
H A Dfuse_main.c78 static int fuse_loader(struct module *m, int what, void *arg);
116 fuse_loader(struct module *m, int what, void *arg) argument
121 switch (what) {
133 if ((err = vfs_modevent(NULL, what, &fuse_vfsconf)))
142 if ((err = vfs_modevent(NULL, what, &fuse_vfsconf)))
/freebsd-10-stable/contrib/binutils/gas/
H A Dstabs.c137 aout_process_stab (what, string, type, other, desc)
138 int what;
152 if (what == 's' || what == 'n')
177 s_stab_generic (int what, char *stab_secname, char *stabstr_secname) argument
190 any trailing whitespace. The argument what is one of 's', 'n' or
193 if (what != 's')
212 as_warn (_(".stab%c: missing comma"), what);
220 as_warn (_(".stab%c: missing comma"), what);
228 as_warn (_(".stab%c: missing comma"), what);
398 s_stab(int what) argument
406 s_xstab(int what) argument
[all...]

Completed in 233 milliseconds

1234567891011>>