HomeSort by relevance Sort by last modified time
    Searched defs:success (Results 76 - 100 of 1599) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest-options_test.cc 109 const bool success = local
117 const bool success = local
123 if (!success)
  /external/wpa_supplicant_8/src/utils/
browser-android.c 18 int success; member in struct:browser_data
41 data->success = 1;
44 data->success = atoi(url + 5);
125 return data.success;
browser-system.c 18 int success; member in struct:browser_data
41 data->success = 1;
44 data->success = atoi(url + 5);
118 return data.success;
browser-wpadebug.c 18 int success; member in struct:browser_data
41 data->success = 1;
44 data->success = atoi(url + 5);
137 return data.success;
  /frameworks/av/media/libstagefright/codecs/mp3dec/test/
mp3dec_test.cpp 67 bool success = mp3Reader.init(argv[1]); local
68 if (!success) {
101 bool success = mp3Reader.getFrame(inputBuf, &bytesRead); local
102 if (!success) break;
  /frameworks/base/core/tests/coretests/src/android/os/
MessageQueueTest.java 56 success(); method
136 success(); method
  /frameworks/base/media/mca/filterfw/jni/
jni_vertex_frame.cpp 43 const bool success = frame->WriteData(reinterpret_cast<const uint8_t*>(int_ptr), local
46 return ToJBool(success);
60 const bool success = frame->WriteData(reinterpret_cast<const uint8_t*>(float_ptr), local
63 return ToJBool(success);
78 const bool success = frame->WriteData(reinterpret_cast<const uint8_t*>(bytes + offset), local
81 return ToJBool(success);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
IccIoResult.java 51 public boolean success() { method in class:IccIoResult
56 * Returns exception on error or null if success
59 if (success()) return null;
  /frameworks/volley/src/main/java/com/android/volley/
Response.java 42 public static <T> Response<T> success(T result, Cache.Entry cacheEntry) { method in class:Response
  /ndk/sources/third_party/googletest/googletest/test/
gtest-options_test.cc 109 const bool success = local
117 const bool success = local
123 if (!success)
  /prebuilts/misc/windows/sdl2/test/
testmessage.c 58 int success = 0; local
63 success = SDL_ShowMessageBox(&data, &button);
64 if (success == -1) {
89 int success; local
94 success = SDL_ShowSimpleMessageBox(SDL_MESSAGEBOX_ERROR,
98 if (success == -1) {
103 success = SDL_ShowSimpleMessageBox(SDL_MESSAGEBOX_ERROR,
107 if (success == -1) {
113 success = SDL_ShowSimpleMessageBox(SDL_MESSAGEBOX_ERROR,
117 if (success == -1)
    [all...]
  /system/connectivity/apmanager/dbus/
firewalld_dbus_proxy.cc 58 bool success = false; local
60 if (!proxy_->PunchUdpHole(port, interface, &success, &error)) {
65 if (!success) {
83 bool success; local
84 if (!proxy_->PlugUdpHole(port, interface, &success, &error)) {
89 if (!success) {
permission_broker_dbus_proxy.cc 98 bool success; local
99 if (!proxy_->ReleaseUdpPort(port, interface, &success, &error)) {
104 if (!success) {
  /system/connectivity/shill/
async_connection.cc 109 bool success = false; local
118 success = true;
123 callback_.Run(success, returned_fd); // Passes ownership
  /system/connectivity/shill/dbus/
chromeos_supplicant_bss_proxy.cc 70 bool success) {
73 << "success: " << success; local
74 if (!success) {
  /cts/tests/tests/uidisolation/src/android/uidisolation/cts/
IsolatedServiceTest.java 82 Boolean success = mActivity.getSuccess(); local
83 assertNotNull("Test error: No success status available.", success);
84 assertTrue(success.booleanValue());
  /bionic/tests/libs/
bionic_tests_zipalign.cpp 152 bool success = CreateAlignedZip(handle, zip_dst, static_cast<uint32_t>(alignment)); local
157 return success ? 0 : 1;
  /external/google-breakpad/src/tools/linux/symupload/
minidump_upload.cc 55 bool success; member in struct:Options
67 bool success = HTTPUpload::SendRequest(options->uploadURLStr, local
78 if (success) {
85 options->success = success;
150 return options.success ? 0 : 1;
  /external/icu/icu4c/source/layout/
IndicRearrangementProcessor2.cpp 22 const LEReferenceTo<MorphSubtableHeader2> &morphSubtableHeader, LEErrorCode &success)
23 : StateTableProcessor2(morphSubtableHeader, success), entryTable(stHeader, success, entryTableOffset, LE_UNBOUNDED_ARRAY),
24 indicRearrangementSubtableHeader(morphSubtableHeader, success)
39 EntryTableIndex2 index, LEErrorCode &success)
41 const IndicRearrangementStateEntry2 *entry = entryTable.getAlias(index, success);
42 if (LE_FAILURE(success)) return 0; // TODO - what to return in bad state?
71 LEErrorCode success = LE_NO_ERROR; local
80 ia = glyphStorage.getCharIndex(firstGlyph, success);
85 ix = glyphStorage.getCharIndex(x, success);
    [all...]
MPreFixups.cpp 43 void MPreFixups::apply(LEGlyphStorage &glyphStorage, LEErrorCode& success)
45 if (LE_FAILURE(success)) {
66 LEErrorCode success = LE_NO_ERROR; local
76 success = LE_MEMORY_ALLOCATION_ERROR;
84 indexSave[i] = glyphStorage.getCharIndex(mpreIndex + i, success); //charIndices[mpreIndex + i];
89 le_int32 charIndex = glyphStorage.getCharIndex(mpreLimit + i, success);
92 glyphStorage.setCharIndex(mpreIndex + i, charIndex, success);
97 glyphStorage.setCharIndex(mpreDest, indexSave[i], success);
  /external/libchrome/base/strings/
utf_string_conversions_unittest.cc 75 bool success; member in struct:base::UTF8ToWideCase
102 EXPECT_EQ(convert_cases[i].success,
130 bool success; member in struct:base::WideToUTF8Case
147 EXPECT_EQ(test.success,
160 bool success; member in struct:base::WideToUTF8Case
178 EXPECT_EQ(test.success,
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test_printf.c 95 boolean success = TRUE; local
111 return success;
118 boolean success = TRUE; local
122 return success;
  /external/parameter-framework/upstream/test/test-fixed-point-parameter/
Main.py 117 value, success = testFunc(value)
118 if not success:
126 value, success = self.checkBounds(value)
127 if success:
141 (success, errorMsg) = self._pfwClient.set(self._paramPath, str(valueToSet))
143 return valueToSet, success
183 (success, errorMsg) = pfw.set(self._paramPath, valuePreviouslyGotten)
185 return valuePreviouslyGotten, success
220 (success, _, errorMsg) = self._instance.accessParameterValue(parameter, str(value), True)
221 return success, errorMs
237 success = True variable
    [all...]
  /external/skia/bench/
GLBench.cpp 73 GrGLint success = GR_GL_INIT_ZERO; local
75 GR_GL_CALL(gl, GetShaderiv(shader, GR_GL_COMPILE_STATUS, &success));
76 if (!success) {
96 GrGLint success = GR_GL_INIT_ZERO; local
98 GR_GL_CALL(gl, GetProgramiv(shaderProgram, GR_GL_LINK_STATUS, &success));
99 if (!success) {
  /external/skia/tests/
BitmapTest.cpp 81 bool success = bm.setInfo(info, info.minRowBytes() - 1); // invalid for 32bit local
82 REPORTER_ASSERT(reporter, !success);

Completed in 463 milliseconds

1 2 34 5 6 7 8 91011>>