HomeSort by relevance Sort by last modified time
    Searched defs:ret (Results 251 - 275 of 7945) sorted by null

<<11121314151617181920>>

  /external/webrtc/talk/app/webrtc/java/jni/
jni_onload.cc 39 jint ret = InitGlobalJniVariables(jvm); local
40 RTC_DCHECK_GE(ret, 0);
41 if (ret < 0)
47 return ret;
  /external/webrtc/webrtc/test/win/
run_loop_win.cc 25 BOOL ret; local
26 while ((ret = GetMessage(&msg, NULL, 0, 0)) != 0) {
27 assert(ret != -1);
  /frameworks/base/native/webview/plat_support/
jni_entry_point.cpp 31 jint ret = vm->AttachCurrentThread(&env, NULL); local
32 LOG_ALWAYS_FATAL_IF(ret != JNI_OK, "AttachCurrentThread failed");
  /frameworks/native/services/vr/bufferhubd/
bufferhubd.cpp 13 int ret = -1; local
22 ret = getrlimit64(RLIMIT_NOFILE, &rlim);
23 LOG_ALWAYS_FATAL_IF(ret != 0, "Failed to get nofile limit.");
27 ret = setrlimit64(RLIMIT_NOFILE, &rlim);
28 ALOGE_IF(ret < 0, "Failed to set nofile limit, error=%s", strerror(errno));
44 ret = dvrSetSchedulerClass(0, "graphics");
45 CHECK_ERROR(ret < 0, error, "Failed to set thread priority");
49 ret = dispatcher->EnterDispatchLoop();
50 CHECK_ERROR(ret < 0, error, "Dispatch loop exited because: %s\n",
51 strerror(-ret));
    [all...]
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/h264/parser/
h264parse_pps.c 11 h264_Status ret = H264_PPS_ERROR; local
120 ret = H264_STATUS_OK;
124 return ret;
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/mp2/parser/
mix_vbp_mpeg2_stubs.c 22 viddec_workload_t *ret; local
25 ret = viddec_pm_get_next_header(parent);
29 ret = viddec_pm_get_header(parent);
31 return ret;
  /hardware/intel/common/wrs_omxil_core/base/src/
portimage.cpp 41 OMX_ERRORTYPE ret; local
43 ret = ComponentBase::CheckTypeHeader((void *)p, sizeof(*p));
44 if (ret != OMX_ErrorNone)
45 return ret;
portother.cpp 41 OMX_ERRORTYPE ret; local
43 ret = ComponentBase::CheckTypeHeader((void *)p, sizeof(*p));
44 if (ret != OMX_ErrorNone)
45 return ret;
  /hardware/qcom/data/ipacfg-mgr/msm8998/ipanat/test/
ipa_nat_test001.c 48 int ret; local
66 ret = ipa_nat_add_ipv4_tbl(pub_ip_add, total_entries, &tbl_hdl);
67 CHECK_ERR(ret);
69 ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl);
70 CHECK_ERR(ret);
72 ret = ipa_nat_del_ipv4_tbl(tbl_hdl);
73 CHECK_ERR(ret);
ipa_nat_test002.c 49 int ret; local
68 ret = ipa_nat_add_ipv4_tbl(pub_ip_add, total_entries, &tbl_hdl);
69 CHECK_ERR(ret);
72 ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl);
73 CHECK_ERR(ret);
75 ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl);
76 CHECK_ERR(ret);
80 ret = ipa_nat_del_ipv4_tbl(tbl_hdl);
81 CHECK_ERR(ret);
ipa_nat_test021.c 48 int ret, i; local
59 ret = ipa_nat_add_ipv4_tbl(pub_ip_add, total_entries, &tbl_hdl);
60 if (0 != ret)
62 IPAERR("unable to create ipv4 nat table and returning Error:%d\n", ret);
69 ret = ipa_nat_del_ipv4_tbl(tbl_hdl);
70 if (0 != ret)
72 IPAERR("Unable to delete ipv4 nat table %d\n", ret);
  /prebuilts/go/darwin-x86/misc/cgo/testcshared/
main1.c 16 signed char ret = fn(); local
17 if (ret != want) {
18 fprintf(stderr, "ERROR: %s=%d, want %d\n", fname, ret, want);
31 int32_t ret = fn(); local
32 if (ret != want) {
33 fprintf(stderr, "ERROR: %s=%d, want %d\n", fname, ret, want);
51 int ret = 0; local
52 ret = check_int8(handle, "DidInitRun", 1);
53 if (ret != 0) {
54 return ret;
    [all...]
  /prebuilts/go/linux-x86/misc/cgo/testcshared/
main1.c 16 signed char ret = fn(); local
17 if (ret != want) {
18 fprintf(stderr, "ERROR: %s=%d, want %d\n", fname, ret, want);
31 int32_t ret = fn(); local
32 if (ret != want) {
33 fprintf(stderr, "ERROR: %s=%d, want %d\n", fname, ret, want);
51 int ret = 0; local
52 ret = check_int8(handle, "DidInitRun", 1);
53 if (ret != 0) {
54 return ret;
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/
deallocate.pass.cpp 35 auto ret = a.allocate(N); local
36 assert(R.checkAlloc(ret, N * sizeof(T), alignof(T)));
38 a.deallocate(ret, N);
39 assert(R.checkDealloc(ret, N * sizeof(T), alignof(T)));
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/cmake/
posix_regex.cpp 10 int ret = regexec(&re, str.c_str(), 0, nullptr, 0) ? -1 : 0; local
12 return ret;
  /system/core/libcutils/
android_reboot.cpp 27 int ret; local
45 ret = asprintf(&prop_value, "%s,%s", restart_cmd, arg);
47 ret = asprintf(&prop_value, "%s", restart_cmd);
49 if (ret < 0) return -1;
50 ret = property_set(ANDROID_RB_PROPERTY, prop_value);
52 return ret;
  /system/core/libmemunreachable/
Binder.cpp 48 ssize_t ret = fn(refs.size(), refs.data()); local
49 if (ret < 0) {
53 size = ret;
  /system/core/lmkd/
statslog.c 38 int ret = -EINVAL; local
40 return ret;
45 if ((ret = android_log_write_int64(ctx, getElapsedRealTimeNs())) < 0) {
46 return ret;
49 if ((ret = android_log_write_int32(ctx, code)) < 0) {
50 return ret;
53 if ((ret = android_log_write_int32(ctx, state)) < 0) {
54 return ret;
70 int ret = -EINVAL; local
72 return ret;
    [all...]
  /system/extras/ext4_utils/
wipe.c 39 int ret; local
48 ret = ioctl(fd, BLKSECDISCARD, &range);
49 if (ret < 0) {
52 ret = ioctl(fd, BLKDISCARD, &range);
53 if (ret < 0) {
  /system/extras/tests/kernel.config/
sysvipc_test.cpp 38 int ret = kcmp(pid, pid, KCMP_SYSVSEM, 0, 0); local
39 int error = (ret == -1) ? (errno == ENOSYS) ? EOPNOTSUPP : errno : 0;
  /system/libvintf/
SystemSdk.cpp 25 SystemSdk ret; local
27 other.versions().end(), std::inserter(ret.mVersions, ret.mVersions.end()));
28 return ret;
  /test/vts-testcase/kernel/api/bpf_native_test/
BpfTest.cpp 45 int ret = access(bpfMapPath, F_OK); local
46 if (!ret) {
  /test/vts-testcase/kernel/syscall/
syscall_exists.cpp 32 int ret = syscall(syscall_id); local
33 bool exists = !(ret == -1 && errno == ENOSYS);
  /toolchain/binutils/binutils-2.27/gold/
mremap.c 55 void *ret; local
57 ret = mmap (0, new_size, PROT_READ | PROT_WRITE,
59 if (ret == MAP_FAILED)
60 return ret;
61 memcpy (ret, old_address,
64 return ret;
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-elfvsb/
test.c 12 int ret = 0; local
15 ret = 1;
17 ret = 1;
19 return ret;

Completed in 827 milliseconds

<<11121314151617181920>>