HomeSort by relevance Sort by last modified time
    Searched refs:error_code (Results 26 - 50 of 915) sorted by null

12 3 4 5 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.modifiers/
ErrorCodeEnum.pass.cpp 12 // class error_code
14 // template <ErrorCodeEnum E> error_code& operator=(E e);
31 std::error_code
34 return std::error_code(static_cast<int>(x), std::generic_category());
40 std::error_code ec;
  /device/google/marlin/dataservices/rmnetctl/src/
librmnetctl.c 234 * @param error_code Status code of this operation
236 * @return RMNETCTL_LIB_ERR if there was a library error. Check error_code
238 static inline int _rmnetctl_check_len(size_t str_len, uint16_t *error_code) {
242 *error_code = RMNETCTL_API_ERR_STRING_TRUNCATION;
254 * @param error_code Status code of this operation
256 * @return RMNETCTL_LIB_ERR if there was a library error. Check error_code
258 static inline int _rmnetctl_check_code(int crd, uint16_t *error_code) {
262 *error_code = RMNETCTL_API_ERR_RETURN_TYPE;
274 * @param error_code Status code of this operation
276 * @return RMNETCTL_LIB_ERR if there was a library error. Check error_code
    [all...]
  /external/chromium-trace/catapult/third_party/closure_linter/closure_linter/common/
erroroutput.py 33 error_code = '%04d' % error.code
35 error_code = 'New Error ' + error_code
36 return '%s:%s:(%s) %s' % (filename, line, error_code, error.message)
  /external/libcxx/test/std/diagnostics/syserr/syserr.errcode/syserr.errcode.constructors/
default.pass.cpp 12 // class error_code
14 // error_code();
21 std::error_code ec;
int_error_category.pass.cpp 12 // class error_code
14 // error_code(int val, const error_category& cat);
22 std::error_code ec(6, std::system_category());
27 std::error_code ec(8, std::generic_category());
  /external/libcxx/test/std/diagnostics/syserr/syserr.errcode/syserr.errcode.observers/
category.pass.cpp 12 // class error_code
21 const std::error_code ec(6, std::generic_category());
value.pass.cpp 12 // class error_code
21 const std::error_code ec(6, std::system_category());
default_error_condition.pass.cpp 12 // class error_code
22 const std::error_code ec(6, std::generic_category());
27 const std::error_code ec(6, std::system_category());
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
wait_op.hpp 28 asio::error_code ec_;
socket_ops.hpp 17 #include "asio/error_code.hpp"
64 std::size_t* addrlen, asio::error_code& ec);
68 std::size_t* addrlen, asio::error_code& ec);
73 asio::error_code& ec, socket_type& new_socket);
77 std::size_t addrlen, asio::error_code& ec);
80 bool destruction, asio::error_code& ec);
83 state_type& state, bool value, asio::error_code& ec);
86 state_type& state, bool value, asio::error_code& ec);
89 int what, asio::error_code& ec);
92 std::size_t addrlen, asio::error_code& ec)
    [all...]
  /external/webrtc/webrtc/voice_engine/mock/
mock_voe_observer.h 24 MOCK_METHOD2(CallbackOnError, void(int channel, int error_code));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.constructors/
default.pass.cpp 12 // class error_code
14 // error_code();
21 std::error_code ec;
int_error_category.pass.cpp 12 // class error_code
14 // error_code(int val, const error_category& cat);
22 std::error_code ec(6, std::system_category());
27 std::error_code ec(8, std::generic_category());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.observers/
category.pass.cpp 12 // class error_code
21 const std::error_code ec(6, std::generic_category());
value.pass.cpp 12 // class error_code
21 const std::error_code ec(6, std::system_category());
default_error_condition.pass.cpp 12 // class error_code
22 const std::error_code ec(6, std::generic_category());
27 const std::error_code ec(6, std::system_category());
  /device/huawei/angler/dataservices/rmnetctl/src/
librmnetctl.c 231 * @param error_code Status code of this operation
233 * @return RMNETCTL_LIB_ERR if there was a library error. Check error_code
235 static inline int _rmnetctl_check_len(size_t str_len, uint16_t *error_code) {
239 *error_code = RMNETCTL_API_ERR_STRING_TRUNCATION;
251 * @param error_code Status code of this operation
253 * @return RMNETCTL_LIB_ERR if there was a library error. Check error_code
255 static inline int _rmnetctl_check_code(int crd, uint16_t *error_code) {
259 *error_code = RMNETCTL_API_ERR_RETURN_TYPE;
271 * @param error_code Status code of this operation
273 * @return RMNETCTL_LIB_ERR if there was a library error. Check error_code
    [all...]
  /device/lge/bullhead/dataservices/rmnetctl/src/
librmnetctl.c 232 * @param error_code Status code of this operation
234 * @return RMNETCTL_LIB_ERR if there was a library error. Check error_code
236 static inline int _rmnetctl_check_len(size_t str_len, uint16_t *error_code) {
240 *error_code = RMNETCTL_API_ERR_STRING_TRUNCATION;
252 * @param error_code Status code of this operation
254 * @return RMNETCTL_LIB_ERR if there was a library error. Check error_code
256 static inline int _rmnetctl_check_code(int crd, uint16_t *error_code) {
260 *error_code = RMNETCTL_API_ERR_RETURN_TYPE;
272 * @param error_code Status code of this operation
274 * @return RMNETCTL_LIB_ERR if there was a library error. Check error_code
    [all...]
  /device/moto/shamu/dataservices/rmnetctl/src/
librmnetctl.c 214 * @param error_code Status code of this operation
216 * @return RMNETCTL_LIB_ERR if there was a library error. Check error_code
218 static inline int _rmnetctl_check_len(int str_len, uint16_t *error_code) {
222 *error_code = RMNETCTL_API_ERR_STRING_TRUNCATION;
234 * @param error_code Status code of this operation
236 * @return RMNETCTL_LIB_ERR if there was a library error. Check error_code
238 static inline int _rmnetctl_check_code(int crd, uint16_t *error_code) {
242 *error_code = RMNETCTL_API_ERR_RETURN_TYPE;
254 * @param error_code Status code of this operation
256 * @return RMNETCTL_LIB_ERR if there was a library error. Check error_code
    [all...]
  /external/llvm/tools/llvm-cxxdump/
Error.h 28 inline std::error_code make_error_code(cxxdump_error e) {
29 return std::error_code(static_cast<int>(e), cxxdump_category());
  /external/llvm/tools/llvm-readobj/
Error.h 31 inline std::error_code make_error_code(readobj_error e) {
32 return std::error_code(static_cast<int>(e), readobj_category());
  /external/llvm/tools/obj2yaml/
Error.h 25 inline std::error_code make_error_code(obj2yaml_error e) {
26 return std::error_code(static_cast<int>(e), obj2yaml_category());
obj2yaml.h 20 std::error_code coff2yaml(llvm::raw_ostream &Out,
22 std::error_code elf2yaml(llvm::raw_ostream &Out,
  /system/core/base/
errors_windows.cpp 38 DWORD error_code = int_error_code; local
40 DWORD len = FormatMessageW(flags, nullptr, error_code, 0, msgbuf,
45 error_code);
53 GetLastError(), error_code);
63 android::base::StringAppendF(&msg, " (%lu)", error_code);
  /external/parameter-framework/asio-1.10.6/include/asio/
basic_socket.hpp 86 asio::error_code ec;
110 asio::error_code ec;
135 asio::error_code ec;
263 asio::error_code ec;
279 * asio::error_code ec;
287 asio::error_code open(const protocol_type& protocol,
288 asio::error_code& ec)
306 asio::error_code ec;
322 asio::error_code assign(const protocol_type& protocol,
323 const native_handle_type& native_socket, asio::error_code& ec
    [all...]

Completed in 1739 milliseconds

12 3 4 5 6 7 8 91011>>