Symbol: exception
3rdparty/proj2make/proj2make.cpp
311
} catch (exception& exc) {
3rdparty/proj2make/proj2make.cpp
66
class Error : public std::exception
headers/os/kernel/debugger.h
560
debug_exception_type exception; // the exception
headers/os/kernel/debugger.h
682
extern void get_debug_exception_string(debug_exception_type exception,
headers/os/media/SoundPlayer.h
24
class sound_error : public std::exception {
headers/posix/math.h
105
struct exception;
headers/posix/math.h
106
extern int matherr(struct exception *);
headers/private/kernel/user_debugger.h
259
bool user_debug_exception_occurred(debug_exception_type exception, int signal);
headers/private/storage/Exception.h
67
Exception(const Exception& exception)
headers/private/storage/Exception.h
68
: fError(exception.fError),
headers/private/storage/Exception.h
69
fDescription(exception.fDescription)
headers/tools/cppunit/ThreadManager.h
177
catch ( std::exception &e ) {
headers/tools/cppunit/ThreadedTestCaller.h
221
catch ( std::exception &e ) {
headers/tools/cppunit/cppunit/Exception.h
17
class CPPUNIT_API Exception : public std::exception
headers/tools/cppunit/cppunit/Exception.h
71
typedef std::exception SuperClass;
src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/Commands.cpp
708
} catch (ParseException& exception) {
src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/Commands.cpp
711
exception.Message());
src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/Protocol.cpp
355
} catch (ParseException& exception) {
src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/Protocol.cpp
356
printf("Error during parsing: %s\n", exception.Message());
src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/Protocol.cpp
357
} catch (StreamException& exception) {
src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/Protocol.cpp
358
return exception.Status();
src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/Response.h
110
class StreamException : public std::exception {
src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/Response.h
98
class ParseException : public std::exception {
src/add-ons/translators/png/PNGTranslator.cpp
297
throw std::exception();
src/add-ons/translators/png/PNGTranslator.cpp
484
} catch (std::exception& e) {
src/add-ons/translators/png/PNGTranslator.cpp
923
} catch(std::exception& e) {
src/apps/icon-o-matic/import_export/svg/SVGException.h
30
class exception {
src/apps/icon-o-matic/import_export/svg/SVGException.h
33
~exception()
src/apps/icon-o-matic/import_export/svg/SVGException.h
38
exception() : m_msg(0) {}
src/apps/icon-o-matic/import_export/svg/SVGException.h
40
exception(const char* fmt, ...) :
src/apps/icon-o-matic/import_export/svg/SVGException.h
53
exception(const exception& exc) :
src/bin/findpaths.cpp
272
} catch(BFatalErrorException& exception) {
src/bin/findpaths.cpp
273
if (!exception.Details().IsEmpty())
src/bin/findpaths.cpp
274
fprintf(stderr, "%s", exception.Details().String());
src/bin/findpaths.cpp
275
if (exception.Error() == B_OK) {
src/bin/findpaths.cpp
276
fprintf(stderr, "Error: %s\n", exception.Message().String());
src/bin/findpaths.cpp
278
fprintf(stderr, "Error: %s: %s\n", exception.Message().String(),
src/bin/findpaths.cpp
279
strerror(exception.Error()));
src/bin/pkgman/pkgman.cpp
100
fprintf(stderr, "*** %s\n", exception.Message().String());
src/bin/pkgman/pkgman.cpp
102
fprintf(stderr, "*** %s: %s\n", exception.Message().String(),
src/bin/pkgman/pkgman.cpp
103
strerror(exception.Error()));
src/bin/pkgman/pkgman.cpp
96
} catch (BFatalErrorException& exception) {
src/bin/pkgman/pkgman.cpp
97
if (!exception.Details().IsEmpty())
src/bin/pkgman/pkgman.cpp
98
fprintf(stderr, "%s", exception.Details().String());
src/bin/pkgman/pkgman.cpp
99
if (exception.Error() == B_OK) {
src/bin/setmime.cpp
1165
} catch(exception& exc) {
src/bin/setmime.cpp
186
class Error : public std::exception
src/kits/app/TokenSpace.cpp
68
} catch (std::bad_alloc& exception) {
src/kits/app/TokenSpace.cpp
89
} catch (std::bad_alloc& exception) {
src/kits/debug/SymbolLookup.cpp
286
} catch (Exception& exception) {
src/kits/debug/debug_support.cpp
371
} catch (BPrivate::Debug::Exception& exception) {
src/kits/debug/debug_support.cpp
372
return exception.Error();
src/kits/debug/debug_support.cpp
432
} catch (BPrivate::Debug::Exception& exception) {
src/kits/debug/debug_support.cpp
433
return exception.Error();
src/kits/debug/debug_support.cpp
473
} catch (BPrivate::Debug::Exception& exception) {
src/kits/debug/debug_support.cpp
474
error = exception.Error();
src/kits/debug/debug_support.cpp
491
} catch (BPrivate::Debug::Exception& exception) {
src/kits/debug/debug_support.cpp
492
error = exception.Error();
src/kits/debug/debug_support.cpp
568
} catch (BPrivate::Debug::Exception& exception) {
src/kits/debug/debug_support.cpp
569
return exception.Error();
src/kits/debugger/debugger_interface/DebugEvent.cpp
118
debug_exception_type exception)
src/kits/debugger/debugger_interface/DebugEvent.cpp
121
fException(exception)
src/kits/debugger/debugger_interface/DebugEvent.h
107
debug_exception_type exception);
src/kits/debugger/debugger_interface/local/LocalDebuggerInterface.cpp
853
message.exception_occurred.exception);
src/kits/debugger/dwarf/DwarfExpressionEvaluator.cpp
134
} catch (const EvaluationException& exception) {
src/kits/debugger/dwarf/DwarfExpressionEvaluator.cpp
136
} catch (const std::bad_alloc& exception) {
src/kits/debugger/dwarf/DwarfExpressionEvaluator.cpp
154
} catch (const EvaluationException& exception) {
src/kits/debugger/dwarf/DwarfExpressionEvaluator.cpp
156
exception.message);
src/kits/debugger/dwarf/DwarfExpressionEvaluator.cpp
158
} catch (const std::bad_alloc& exception) {
src/kits/debugger/dwarf/DwarfExpressionEvaluator.cpp
214
} catch (const EvaluationException& exception) {
src/kits/debugger/dwarf/DwarfExpressionEvaluator.cpp
216
exception.message);
src/kits/debugger/dwarf/DwarfExpressionEvaluator.cpp
218
} catch (const std::bad_alloc& exception) {
src/kits/debugger/dwarf/DwarfExpressionEvaluator.cpp
255
} catch (const EvaluationException& exception) {
src/kits/debugger/dwarf/DwarfExpressionEvaluator.cpp
257
exception.message);
src/kits/debugger/dwarf/DwarfExpressionEvaluator.cpp
259
} catch (const std::bad_alloc& exception) {
src/kits/media/DormantNodeManager.cpp
142
} catch (std::bad_alloc& exception) {
src/kits/media/PortPool.cpp
66
} catch (std::bad_alloc& exception) {
src/kits/network/libnetservices2/HttpSession.cpp
714
} catch (std::exception& error) {
src/kits/storage/ResourceFile.cpp
1279
} catch (Exception& exception) {
src/kits/storage/ResourceFile.cpp
1280
if (exception.Error() != B_OK)
src/kits/storage/ResourceFile.cpp
1281
error = exception.Error();
src/kits/storage/ResourceFile.cpp
1309
} catch (Exception& exception) {
src/kits/storage/ResourceFile.cpp
1310
if (exception.Error() != B_OK)
src/kits/storage/ResourceFile.cpp
1311
error = exception.Error();
src/kits/storage/ResourceFile.cpp
247
} catch (Exception& exception) {
src/kits/storage/ResourceFile.cpp
249
if (exception.Error() != B_OK)
src/kits/storage/ResourceFile.cpp
250
error = exception.Error();
src/kits/storage/ResourceFile.cpp
298
} catch (Exception& exception) {
src/kits/storage/ResourceFile.cpp
299
if (exception.Error() != B_OK)
src/kits/storage/ResourceFile.cpp
300
error = exception.Error();
src/kits/storage/disk_device/DiskSystemAddOnManager.cpp
365
} catch (std::bad_alloc& exception) {
src/kits/storage/storage_support.cpp
275
} catch (std::bad_alloc& exception) {
src/servers/app/ServerApp.cpp
3765
} catch (std::bad_alloc& exception) {
src/servers/app/ServerApp.cpp
456
} catch (std::bad_alloc& exception) {
src/servers/debug/DebugServer.cpp
823
message->Data().exception_occurred.exception, buffer,
src/servers/media/AppManager.cpp
83
} catch (std::bad_alloc& exception) {
src/servers/media/BufferManager.cpp
97
} catch (std::bad_alloc& exception) {
src/servers/media/MediaFilesManager.cpp
429
} catch (std::bad_alloc& exception) {
src/servers/media/NodeManager.cpp
1371
} catch (std::bad_alloc& exception) {
src/servers/media/NodeManager.cpp
183
} catch (std::bad_alloc& exception) {
src/servers/media/NodeManager.cpp
483
} catch (std::bad_alloc& exception) {
src/servers/media/NodeManager.cpp
511
} catch (std::bad_alloc& exception) {
src/servers/media/NodeManager.cpp
730
} catch (std::bad_alloc& exception) {
src/servers/media/NodeManager.cpp
778
} catch (std::bad_alloc& exception) {
src/servers/media/NodeManager.cpp
867
} catch (std::bad_alloc& exception) {
src/servers/media/NodeManager.cpp
946
} catch (std::bad_alloc& exception) {
src/servers/media_addon/MediaAddonServer.cpp
554
} catch (std::bad_alloc& exception) {
src/servers/package/Root.cpp
465
} catch (BFatalErrorException& exception) {
src/servers/package/Root.cpp
466
if (exception.Error() == B_OK) {
src/servers/package/Root.cpp
467
_ShowError(exception.Message());
src/servers/package/Root.cpp
470
exception.Message().String(), strerror(exception.Error())));
src/servers/package/Volume.cpp
1494
} catch (Exception& exception) {
src/servers/package/Volume.cpp
1495
error = exception.Error();
src/servers/package/Volume.cpp
1496
exception.SetOnResult(_result);
src/servers/package/Volume.cpp
1501
} catch (std::bad_alloc& exception) {
src/servers/package/Volume.cpp
954
} catch (std::bad_alloc& exception) {
src/servers/package/Volume.cpp
993
} catch (std::bad_alloc& exception) {
src/servers/registrar/Registrar.cpp
110
} catch (std::exception& exception) {
src/servers/registrar/Registrar.cpp
114
exception.what());
src/servers/registrar/Registrar.cpp
476
} catch (std::exception& exception) {
src/servers/registrar/Registrar.cpp
479
"registrar main() caught exception: %s", exception.what());
src/system/kernel/debug/user_debugger.cpp
929
user_debug_exception_occurred(debug_exception_type exception, int signal)
src/system/kernel/debug/user_debugger.cpp
943
message.exception = exception;
src/system/libroot/os/debug.c
177
get_debug_exception_string(debug_exception_type exception, char *buffer,
src/system/libroot/os/debug.c
181
(uint32)exception, buffer, bufferSize);
src/system/libroot/posix/glibc/include/math.h
6
extern int __matherr (struct exception *__exc);
src/tests/kits/storage/MimeTypeTest.cpp
3479
} catch (CppUnit::Exception exception) {
src/tests/kits/storage/MimeTypeTest.cpp
3481
throw exception;
src/tests/kits/storage/QueryTest.cpp
1376
} catch (CppUnit::Exception exception) {
src/tests/kits/storage/QueryTest.cpp
1378
throw exception;
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
1370
} catch (FatalException& exception) {
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
1373
indented_string(exception.Message(), " ").String());
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
1375
} catch (TestException& exception) {
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
1378
indented_string(exception.Message(), " ").String());
src/tests/misc/exception-test/exception-test.cpp
109
} catch (int exception) {
src/tests/misc/exception-test/exception-test.cpp
122
} catch (int exception) {
src/tests/misc/exception-test/exception-test.cpp
124
} catch (VirtualExceptionA exception) {
src/tests/misc/exception-test/exception-test.cpp
126
} catch (VirtualExceptionB exception) {
src/tests/misc/exception-test/exception-test.cpp
128
} catch (VirtualExceptionBase exception) {
src/tests/misc/exception-test/exception-test.cpp
130
} catch (ExceptionA exception) {
src/tests/misc/exception-test/exception-test.cpp
132
} catch (ExceptionB exception) {
src/tests/misc/exception-test/exception-test.cpp
134
} catch (ExceptionBase exception) {
src/tests/misc/exception-test/exception-test.cpp
25
} catch (ExceptionBase exception) {
src/tests/misc/exception-test/exception-test.cpp
39
} catch (ExceptionA exception) {
src/tests/misc/exception-test/exception-test.cpp
53
} catch (ExceptionB exception) {
src/tests/misc/exception-test/exception-test.cpp
67
} catch (VirtualExceptionBase exception) {
src/tests/misc/exception-test/exception-test.cpp
81
} catch (VirtualExceptionA exception) {
src/tests/misc/exception-test/exception-test.cpp
95
} catch (VirtualExceptionB exception) {
src/tests/servers/registrar/RosterShell.cpp
267
} catch (const std::exception &ex) {
src/tools/cppunit/cppunit/Exception.cpp
22
exception( other )
src/tools/cppunit/cppunit/TestCase.cpp
10
using std::exception;
src/tools/cppunit/cppunit/TestCase.cpp
39
catch ( exception &e ) {
src/tools/gensyscalls/gensyscallinfos.cpp
587
} catch (const Exception& exception) {
src/tools/gensyscalls/gensyscallinfos.cpp
588
fprintf(stderr, "%s\n", exception.what());
src/tools/gensyscalls/gensyscalls.cpp
661
} catch (Exception &exception) {
src/tools/gensyscalls/gensyscalls.cpp
662
fprintf(stderr, "%s\n", exception.what());
src/tools/gensyscalls/gensyscalls_common.h
12
struct Exception : exception {
src/tools/restest/Exception.h
64
Exception(const Exception& exception)
src/tools/restest/Exception.h
65
: fError(exception.fError),
src/tools/restest/Exception.h
66
fDescription(exception.fDescription)
src/tools/restest/ResourceFile.cpp
213
} catch (Exception exception) {
src/tools/restest/ResourceFile.cpp
215
throw exception;
src/tools/restest/ResourceFile.cpp
516
} catch (Exception exception) {
src/tools/restest/ResourceFile.cpp
519
throw exception;
src/tools/restest/restest.cpp
198
} catch (Exception exception) {
src/tools/restest/restest.cpp
199
testResult.exception = new Exception(exception);
src/tools/restest/restest.cpp
204
|| testResult.warnings.CountWarnings() > 0 || testResult.exception) {
src/tools/restest/restest.cpp
216
if (testResult.exception) {
src/tools/restest/restest.cpp
217
status_t error = testResult.exception->GetError();
src/tools/restest/restest.cpp
218
const char* description = testResult.exception->GetDescription();
src/tools/restest/restest.cpp
255
if (testResult->exception)
src/tools/restest/restest.cpp
282
if (!testResult->exception
src/tools/restest/restest.cpp
297
if (testResult->exception)
src/tools/restest/restest.cpp
325
} catch (Exception exception) {
src/tools/restest/restest.cpp
326
status_t error = exception.GetError();
src/tools/restest/restest.cpp
327
const char* description = exception.GetDescription();
src/tools/restest/restest.cpp
50
delete exception;
src/tools/restest/restest.cpp
55
Exception* exception;
src/tools/set_haiku_revision.cpp
268
Exception(const Exception& exception)
src/tools/set_haiku_revision.cpp
269
: fError(exception.fError),
src/tools/set_haiku_revision.cpp
270
fDescription(exception.fDescription)
src/tools/set_haiku_revision.cpp
699
} catch (Exception& exception) {
src/tools/set_haiku_revision.cpp
700
if (exception.Description() == "") {
src/tools/set_haiku_revision.cpp
701
fprintf(stderr, "%s\n", strerror(exception.Error()));
src/tools/set_haiku_revision.cpp
703
fprintf(stderr, "%s: %s\n", exception.Description().c_str(),
src/tools/set_haiku_revision.cpp
704
strerror(exception.Error()));