HomeSort by relevance Sort by last modified time
    Searched refs:return_code (Results 1 - 25 of 62) sorted by null

1 2 3

  /device/moto/shamu/dataservices/rmnetctl/src/
librmnetctl.c 97 int bytes_read = -1, return_code = RMNETCTL_API_ERR_HNDL_INVALID; local
107 return_code = RMNETCTL_API_ERR_REQUEST_NULL;
111 return_code = RMNETCTL_API_ERR_RESPONSE_NULL;
116 return_code = RMNETCTL_API_ERR_REQUEST_NULL;
123 return_code = RMNETCTL_API_ERR_RESPONSE_NULL;
150 return_code = RMNETCTL_API_ERR_MESSAGE_SEND;
163 return_code = RMNETCTL_API_ERR_MESSAGE_RECEIVE;
172 return_code = RMNETCTL_API_ERR_RESPONSE_NULL;
179 return_code = RMNETCTL_API_ERR_MESSAGE_TYPE;
184 return_code = RMNETCTL_SUCCESS
198 int return_code = RMNETCTL_INVALID_ARG; local
219 int return_code = RMNETCTL_LIB_ERR; local
239 int return_code = RMNETCTL_LIB_ERR; local
259 int return_code = RMNETCTL_LIB_ERR; local
281 int return_code = RMNETCTL_KERNEL_ERR; local
294 int pid = -1, netlink_fd = -1, return_code = RMNETCTL_LIB_ERR; local
364 int str_len = -1, return_code = RMNETCTL_LIB_ERR; local
398 int str_len = -1, return_code = RMNETCTL_LIB_ERR; local
433 int str_len = -1, return_code = RMNETCTL_LIB_ERR; local
473 int str_len = -1, return_code = RMNETCTL_LIB_ERR; local
510 int str_len = -1, return_code = RMNETCTL_LIB_ERR; local
547 int str_len = -1, return_code = RMNETCTL_LIB_ERR; local
589 int str_len = -1, return_code = RMNETCTL_LIB_ERR; local
632 int str_len = -1, return_code = RMNETCTL_LIB_ERR; local
672 int str_len = -1, return_code = RMNETCTL_LIB_ERR; local
716 int return_code = RMNETCTL_LIB_ERR; local
771 int return_code = RMNETCTL_LIB_ERR; local
809 int return_code = RMNETCTL_LIB_ERR; local
    [all...]
  /device/moto/shamu/dataservices/rmnetctl/cli/
rmnetcli.c 227 static void print_rmnet_api_status(int return_code, uint16_t error_number)
229 if (return_code == RMNETCTL_SUCCESS)
231 else if (return_code == RMNETCTL_LIB_ERR)
233 else if (return_code == RMNETCTL_KERNEL_ERR)
235 else if (return_code == RMNETCTL_INVALID_ARG)
238 if (return_code == RMNETCTL_LIB_ERR) {
262 int return_code = RMNETCTL_LIB_ERR; local
273 return_code = rmnetctl_init(&handle, &error_number);
274 if (return_code!= RMNETCTL_SUCCESS) {
275 print_rmnet_api_status(return_code, error_number)
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
event_listener.cc 90 int return_code; local
92 return_code = pthread_cond_timedwait(&signal_cond_,
96 return_code = pthread_cond_wait(&signal_cond_,
101 return_code = EINTR;
104 if (return_code != 0) {
106 return Error(return_code);
150 int return_code = 0; local
156 return_code = pthread_cond_timedwait(&signal_cond_,
160 return_code = pthread_cond_wait(&signal_cond_,
164 if (return_code != 0
    [all...]
  /frameworks/ml/bordeaux/learning/stochastic_linear_ranker/native/
stochastic_linear_ranker.cpp 104 int return_code; local
106 return_code = 1;
119 return_code = -1;
122 return_code = 2;
124 return_code = 1;
129 return return_code;
  /external/chromium_org/chromeos/cryptohome/
homedir_methods.h 24 typedef base::Callback<void(bool success, MountError return_code)> Callback;
26 void(bool success, MountError return_code, const std::string& mount_hash)>
mock_homedir_methods.cc 20 void MockHomedirMethods::SetUp(bool success, MountError return_code) {
22 return_code_ = return_code;
mock_homedir_methods.h 22 void SetUp(bool success, MountError return_code);
mock_async_method_caller.cc 26 void MockAsyncMethodCaller::SetUp(bool success, MountError return_code) {
28 return_code_ = return_code;
  /external/chromium_org/chrome/browser/ui/startup/
startup_browser_creator.h 47 int* return_code) {
49 last_opened_profiles, return_code, this);
78 int* return_code);
131 int* return_code,
startup_browser_creator_interactive_uitest.cc 63 int return_code; local
71 last_opened_profiles, &return_code);
  /external/chromium_org/third_party/webrtc/system_wrappers/source/
data_log_c_helpers_unittest.c 37 int return_code = 0; local
39 return_code = -1;
42 return_code = -2;
45 return return_code;
  /external/webrtc/src/system_wrappers/source/
data_log_c_helpers_unittest.c 37 int return_code = 0; local
39 return_code = -1;
42 return_code = -2;
45 return return_code;
  /hardware/samsung_slsi/exynos5/libsecurepath/
tlwvdrm_api.h 59 uint32_t return_code; member in struct:__anon41882
content_protect.cpp 117 if (tci->resp.return_code != RET_TL_WV_DRM_OK) {
118 LOG_E("Trustlet did not send a valid return code: %d", tci->resp.return_code);
181 if (tci->resp.return_code != RET_TL_WV_DRM_OK) {
182 LOG_E("Trustlet did not send a valid return code: %d", tci->resp.return_code);
  /external/chromium_org/chrome/app/
client_util.h 54 virtual int OnBeforeExit(int return_code, const base::string16& dll_path) = 0;
client_util.cc 342 virtual int OnBeforeExit(int return_code, const base::string16& dll_path) {
346 if (chrome::RESULT_CODE_NORMAL_EXIT_CANCEL == return_code) {
349 return return_code;
359 virtual int OnBeforeExit(int return_code,
361 return return_code;
  /external/chromium_org/tools/
run-bisect-manual-test.py 82 return_code = subprocess.call(cmd)
84 if return_code:
86 return_code
89 return return_code
  /external/chromium_org/chrome/browser/chromeos/login/auth/
extended_authenticator.cc 315 cryptohome::MountError return_code,
322 if (return_code == cryptohome::MOUNT_ERROR_NONE) {
330 if (return_code == cryptohome::MOUNT_ERROR_TPM_COMM_ERROR ||
331 return_code == cryptohome::MOUNT_ERROR_TPM_DEFEND_LOCK ||
332 return_code == cryptohome::MOUNT_ERROR_TPM_NEEDS_REBOOT) {
335 if (return_code == cryptohome::MOUNT_ERROR_USER_DOES_NOT_EXIST) {
351 cryptohome::MountError return_code) {
355 if (return_code == cryptohome::MOUNT_ERROR_NONE) {
365 if (return_code == cryptohome::MOUNT_ERROR_TPM_COMM_ERROR ||
366 return_code == cryptohome::MOUNT_ERROR_TPM_DEFEND_LOCK |
    [all...]
extended_authenticator.h 141 cryptohome::MountError return_code,
147 cryptohome::MountError return_code);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/
gardeningserver.py 113 return_code, output, error = self._run_webkit_patch(command, json_input)
115 json_result = {"return_code": return_code}
116 if return_code:
117 _log.error("rebaseline-json failed: %d, output='%s'" % (return_code, output))
  /external/tcpdump/
print-lspping.c 72 u_int8_t return_code; member in struct:lspping_common_header
539 if (lspping_com_header->return_code == 3 ||
540 lspping_com_header->return_code == 4 ||
541 lspping_com_header->return_code == 8 ||
542 lspping_com_header->return_code == 10 ||
543 lspping_com_header->return_code == 11 ||
544 lspping_com_header->return_code == 12 )
546 tok2str(lspping_return_code_values, "unknown",lspping_com_header->return_code),
548 lspping_com_header->return_code,
552 tok2str(lspping_return_code_values, "unknown",lspping_com_header->return_code),
    [all...]
  /external/chromium_org/base/win/
iat_patch_function.cc 22 DWORD return_code; member in struct:base::win::__anon7193::InterceptFunctionInformation
74 intercept_information->return_code =
135 return intercept_information.return_code;
  /external/webrtc/test/testsupport/metrics/
video_metrics.cc 137 int return_code = 0; local
142 return_code = -3;
151 return return_code;
  /ndk/sources/host-tools/sed-4.2.1/sed/
sed.c 206 int return_code; local
349 return_code = process_files(the_program, argv+optind);
354 return return_code;
  /external/chromium_org/net/url_request/
url_request_context_builder_unittest.cc 43 explicit MockHttpAuthHandlerFactory(int return_code) :
44 return_code_(return_code) {}

Completed in 638 milliseconds

1 2 3