HomeSort by relevance Sort by last modified time
    Searched defs:success (Results 176 - 200 of 2342) sorted by null

1 2 3 4 5 6 78 91011>>

  /frameworks/native/cmds/lshal/
Timeout.h 72 bool success = state.wait(now + delay); local
73 if (!success) {
77 return success;
88 bool success = timeout(wait, [&ret, &boundFunc] { local
91 if (!success) {
  /hardware/interfaces/ir/1.0/default/
ConsumerIr.cpp 49 bool success = (mDevice->get_carrier_freqs(mDevice, len, rangeAr) >= 0); local
50 if (!success) {
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/task/
CreateManagedProfileTask.java 78 success(); method
DisableInstallShortcutListenersTask.java 65 success(); method
  /prebuilts/go/darwin-x86/src/os/
exec_plan9.go 113 func (p *ProcessState) success() bool { func
  /prebuilts/go/linux-x86/src/os/
exec_plan9.go 113 func (p *ProcessState) success() bool { func
  /system/chre/core/
host_comms_manager.cc 37 bool success = false; local
61 success = mHostLink.sendMessage(msgToHost);
62 if (!success) {
68 return success;
74 bool success = false; local
92 success = EventLoopManagerSingleton::get()->getEventLoop().postEvent(
97 if (!success && msgFromHost != nullptr) {
  /system/chre/host/common/
host_protocol_host.cc 48 bool success = verifyMessage(message, messageLen); local
49 if (success) {
86 success = false;
90 return success;
134 bool success = false; local
136 success = verifyMessage(message, messageLen);
138 if (success) {
147 return success;
152 bool success = verifyMessage(message, messageLen); local
154 if (!success) {
    [all...]
  /system/chre/platform/linux/
platform_nanoapp.cc 85 bool success = false; local
88 success = true;
90 success = openNanoappFromFile();
95 return success;
101 bool success = false; local
114 success = validateAppInfo(0 /* skip ID validation */, 0, mAppInfo,
116 if (!success) {
127 return success;
system_timer.cc 121 bool success = false; local
130 success = true;
133 return success;
  /system/core/adb/
remount_service.cpp 142 bool success = true; local
144 success &= remount_partition(fd, "/");
146 success &= remount_partition(fd, "/system");
148 success &= remount_partition(fd, "/odm");
149 success &= remount_partition(fd, "/oem");
150 success &= remount_partition(fd, "/product");
151 success &= remount_partition(fd, "/vendor");
153 WriteFdExactly(fd, success ? "remount succeeded\n" : "remount failed\n");
  /system/extras/simpleperf/
cmd_kmem_test.cpp 36 bool success; member in struct:ReportResult
44 result->success = false;
62 result->success = true;
104 ASSERT_TRUE(result.success);
114 ASSERT_TRUE(result.success);
123 ASSERT_TRUE(result.success);
135 ASSERT_TRUE(result.success);
143 ASSERT_TRUE(result.success);
  /system/libhidl/base/
SynchronizedQueue.h 87 bool success; local
92 success = true;
94 success = false;
99 return success;
  /system/libvintf/
ManifestInstance.cpp 91 bool success = e.setTo(version().majorVer, version().minorVer, interface(), instance()); local
93 CHECK(success) << "Cannot remove package from '" << mFqInstance.string() << "'";
95 (void)success;
  /system/netd/server/
ResolverController.h 51 enum class Validation : uint8_t { in_process, success, fail, unknown_server, unknown_netid }; member in class:android::net::ResolverController::Validation
  /system/security/keystore/
grant_store.cpp 50 bool success = false; local
53 return success = entry.alias_ == alias && entry.owner_dir_name_ == owner_dir_name
56 while (!success) {
57 std::tie(iterator, success) = uid_grant_list.emplace(alias, owner_dir_name, owner_uid,
  /system/tools/aidl/
code_writer.cpp 63 bool success; variable
66 success = vfprintf(output_, format, ap) >= 0;
68 no_error_ = no_error_ && success;
69 return success;
io_delegate.cpp 132 bool success; local
134 success = _mkdir(base_dir.c_str()) == 0;
136 success = mkdir(base_dir.c_str(),
140 if (!success && (errno != EEXIST && errno != EISDIR)) {
  /test/vts/drivers/hal/replayer/
VtsHidlHalReplayerMain.cpp 127 bool success = replayer.ReplayTrace(trace_path, hal_service_instances); local
128 if (success) {
  /art/runtime/mirror/
object-readbarrier-inl.h 220 bool success = atomic_addr->CompareAndSetStrongRelaxed(old_ref, new_ref); local
221 return success;
249 bool success = atomic_addr->CompareAndSetStrongRelease(old_ref, new_ref); local
250 return success;
  /art/tools/dexfuzz/src/dexfuzz/listeners/
UpdatingConsoleListener.java 32 long success; field in class:UpdatingConsoleListener
69 iterations, failedVerification, failedMutation, timedOut, success,
96 success++;
  /bootable/recovery/otautil/
SysUtil.cpp 122 bool success = true; local
129 success = false;
135 success = false;
143 success = false;
151 if (success && remaining_size != 0) {
153 success = false;
155 if (!success) {
  /bootable/recovery/tests/component/
uncrypt_test.cpp 47 bool success = false; local
55 success = true;
61 ASSERT_TRUE(success) << "uncrypt service is not available.";
98 bool success = false; local
101 success = true;
106 ASSERT_TRUE(success);
  /cts/hostsidetests/sustainedperf/shadertoy_android/jni/
shadertoy_shader.cpp 31 GLint success; local
33 glGetShaderiv(shader, GL_COMPILE_STATUS, &success);
34 if (!success)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
thread_atheos.h 101 status_t success = -1; local
115 success = resume_thread(tid);
116 if (success < 0) {
121 return (success < 0 ? -1 : tid);

Completed in 3411 milliseconds

1 2 3 4 5 6 78 91011>>