Home
last modified time | relevance | path

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

/oneTBB/src/tbb/
H A Dexception.cpp108 std::size_t buf_len = std::strlen(buf); in handle_perror() local
110 std::strncat(buf, ": ", BUF_SIZE - buf_len); in handle_perror()
111 buf_len = std::strlen(buf); in handle_perror()
112 std::strncat(buf, std::strerror(error_code), BUF_SIZE - buf_len); in handle_perror()
113 buf_len = std::strlen(buf); in handle_perror()
115 __TBB_ASSERT(buf_len <= BUF_SIZE && buf[buf_len] == 0, nullptr); in handle_perror()