Home
last modified time | relevance | path

Searched refs:error_code (Results 1 – 11 of 11) sorted by relevance

/oneTBB/src/tbb/
H A Drml_thread_monitor.h68 void handle_perror(int error_code, const char* aux_info);
123 static void check( int error_code, const char* routine );
181 inline void thread_monitor::check( int error_code, const char* routine ) { in check() argument
182 if( error_code ) { in check()
183 handle_perror(error_code, routine); in check()
H A Dexception.cpp104 void handle_perror( int error_code, const char* what ) { in handle_perror() argument
109 if (error_code) { in handle_perror()
112 std::strncat(buf, std::strerror(error_code), BUF_SIZE - buf_len); in handle_perror()
H A Dco_context.h157 void handle_perror(int error_code, const char* what);
159 inline void check(int error_code, const char* routine) { in check() argument
160 if (error_code) { in check()
161 handle_perror(error_code, routine); in check()
H A Dparallel_pipeline.cpp30 void handle_perror(int error_code, const char* aux_info);
H A Dscheduler_common.h593 void handle_perror(int error_code, const char* aux_info);
/oneTBB/src/tbb/tools_api/
H A Dittnotify_config.h314 int error_code = pthread_mutexattr_init(&mutex_attr); \
315 if (error_code) \
317 error_code); \
318 error_code = pthread_mutexattr_settype(&mutex_attr, \
320 if (error_code) \
322 error_code); \
323 error_code = pthread_mutex_init(mutex, &mutex_attr); \
324 if (error_code) \
326 error_code); \
327 error_code = pthread_mutexattr_destroy(&mutex_attr); \
[all …]
/oneTBB/cmake/android/
H A Denvironment.cmake25 message(FATAL_ERROR "Error while on device execution: ${cmd} error_code: ${CMD_RESULT}")
33 message(FATAL_ERROR "Error while data transferring: ${data_path} error_code: ${CMD_RESULT}")
/oneTBB/test/common/
H A Dcontainers_common.h134 static int error_code() { return 8; };
139 throw error_code();
H A Dconcurrent_associative_common.h1562 } catch ( int error_code ) {
1563 REQUIRE_MESSAGE(error_code == ThrowOnCopy::error_code(), "Incorrect code was thrown");
1575 } catch( int error_code ) {
1576 REQUIRE_MESSAGE(error_code == ThrowOnCopy::error_code(), "Incorrect code was thrown");
/oneTBB/cmake/python/
H A Dtest_launcher.cmake37 message(FATAL_ERROR "Error while test execution: ${cmd} error_code: ${CMD_RESULT}")
/oneTBB/examples/common/gui/
H A Dxvideo.cpp105 x_error = error->error_code; in xerr_handler()