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

1 2 3 4 5 6 7 8 91011

  /external/icu/android_utils/
IcuUtils.cpp 28 LOG_ALWAYS_FATAL_IF(systemPathPrefix == NULL, "ANDROID_ROOT environment variable not set");
32 LOG_ALWAYS_FATAL_IF((num_written < 0 || static_cast<size_t>(num_written) >= sizeof(buf)),
41 LOG_ALWAYS_FATAL_IF(!U_SUCCESS(status), "Failed to initialize ICU %s", u_errorName(status));
  /frameworks/minikin/tests/util/
FileUtils.cpp 28 LOG_ALWAYS_FATAL_IF(fp == nullptr);
30 LOG_ALWAYS_FATAL_IF(fstat(fileno(fp), &st) != 0);
33 LOG_ALWAYS_FATAL_IF(fread(result.data(), 1, st.st_size, fp) != static_cast<size_t>(st.st_size));
PathUtils.cpp 29 LOG_ALWAYS_FATAL_IF(result == nullptr, "dirname failed.");
35 LOG_ALWAYS_FATAL_IF(result == nullptr, "basename failed.");
41 LOG_ALWAYS_FATAL_IF(readlink(SELF_EXE_PATH, buf, PATH_MAX) == -1, "readlink failed.");
FreeTypeMinikinFontForTest.cpp 52 LOG_ALWAYS_FATAL_IF(FT_Set_Char_Size(face, scale, scale, 72 /* dpi */, 72 /* dpi */),
54 LOG_ALWAYS_FATAL_IF(FT_Load_Glyph(face, glyphId, LOAD_FLAG), "Failed to load glyph");
55 LOG_ALWAYS_FATAL_IF(face->glyph->format != FT_GLYPH_FORMAT_OUTLINE,
64 LOG_ALWAYS_FATAL_IF(fd == -1, "Open failed: %s", font_path.c_str());
66 LOG_ALWAYS_FATAL_IF(fstat(fd, &st) != 0);
69 LOG_ALWAYS_FATAL_IF(mFontData == nullptr);
72 LOG_ALWAYS_FATAL_IF(FT_Init_FreeType(&mFtLibrary), "Failed to initialize FreeType");
78 LOG_ALWAYS_FATAL_IF(FT_Open_Face(mFtLibrary, &args, index, &mFtFace), "Failed to open FT_Face");
UnicodeUtils.cpp 41 LOG_ALWAYS_FATAL_IF(static_cast<uint8_t>(src[input_ix]) >= 0x80);
43 LOG_ALWAYS_FATAL_IF(src[input_ix] == 0);
44 LOG_ALWAYS_FATAL_IF(output_ix >= buf_size);
46 LOG_ALWAYS_FATAL_IF(src[input_ix] != '\'');
53 LOG_ALWAYS_FATAL_IF(src[input_ix] != '+');
60 LOG_ALWAYS_FATAL_IF(num_hex_digits < 4u);
61 LOG_ALWAYS_FATAL_IF(num_hex_digits > 6u);
62 LOG_ALWAYS_FATAL_IF(codepoint > 0x10FFFFu);
65 LOG_ALWAYS_FATAL_IF(output_ix + 1 > buf_size);
69 LOG_ALWAYS_FATAL_IF(output_ix + 2 > buf_size)
    [all...]
  /frameworks/minikin/tests/perftests/
main.cpp 28 LOG_ALWAYS_FATAL_IF(fd == -1);
30 LOG_ALWAYS_FATAL_IF(fstat(fd, &st) != 0);
35 LOG_ALWAYS_FATAL_IF(U_FAILURE(errorCode));
37 LOG_ALWAYS_FATAL_IF(U_FAILURE(errorCode));
GraphemeBreak.cpp 39 LOG_ALWAYS_FATAL_IF(result_size != 12);
54 LOG_ALWAYS_FATAL_IF(result_size != 12);
69 LOG_ALWAYS_FATAL_IF(result_size != 12);
  /frameworks/base/core/jni/
core_jni_helpers.h 29 LOG_ALWAYS_FATAL_IF(clazz == NULL, "Unable to find class %s", class_name);
36 LOG_ALWAYS_FATAL_IF(res == NULL, "Unable to find static field %s", field_name);
43 LOG_ALWAYS_FATAL_IF(res == NULL, "Unable to find method %s", method_name);
50 LOG_ALWAYS_FATAL_IF(res == NULL, "Unable to find static field %s", field_name);
57 LOG_ALWAYS_FATAL_IF(res == NULL, "Unable to find static method %s", method_name);
64 LOG_ALWAYS_FATAL_IF(res == NULL, "Unable to create global reference.");
71 LOG_ALWAYS_FATAL_IF(res < 0, "Unable to register native methods.");
  /frameworks/native/libs/gui/
BufferQueue.cpp 88 LOG_ALWAYS_FATAL_IF(outProducer == NULL,
90 LOG_ALWAYS_FATAL_IF(outConsumer == NULL,
94 LOG_ALWAYS_FATAL_IF(core == NULL,
98 LOG_ALWAYS_FATAL_IF(producer == NULL,
102 LOG_ALWAYS_FATAL_IF(consumer == NULL,
112 LOG_ALWAYS_FATAL_IF(outProducer == NULL, "BufferQueue: outProducer must not be NULL");
113 LOG_ALWAYS_FATAL_IF(outConsumer == NULL, "BufferQueue: outConsumer must not be NULL");
121 LOG_ALWAYS_FATAL_IF(producerQueue == NULL, "BufferQueue: failed to create ProducerQueue.");
124 LOG_ALWAYS_FATAL_IF(consumerQueue == NULL, "BufferQueue: failed to create ConsumerQueue.");
129 LOG_ALWAYS_FATAL_IF(producer == NULL, "BufferQueue: failed to create BufferQueueProducer")
    [all...]
  /frameworks/base/libs/hwui/utils/
GLUtils.h 30 LOG_ALWAYS_FATAL_IF(android::uirenderer::GLUtils::dumpGLErrors(), "GL errors! %s:%d", \
  /frameworks/minikin/tests/unittest/
ICUEnvironment.h 42 LOG_ALWAYS_FATAL_IF(fd == -1);
44 LOG_ALWAYS_FATAL_IF(fstat(fd, &sb) != 0);
52 LOG_ALWAYS_FATAL_IF(U_FAILURE(errorCode));
56 LOG_ALWAYS_FATAL_IF(U_FAILURE(errorCode));
  /frameworks/native/services/vr/hardware_composer/
vr_hardware_composer_service.cpp 31 LOG_ALWAYS_FATAL_IF(!service.get(), "Failed to get service");
32 LOG_ALWAYS_FATAL_IF(service->isRemote(), "Service is remote");
35 LOG_ALWAYS_FATAL_IF(service->registerAsService(instance) != android::OK,
48 LOG_ALWAYS_FATAL_IF(status != android::OK,
  /device/google/cuttlefish_common/guest/hals/gps/
gps_vsoc.cpp 63 LOG_ALWAYS_FATAL_IF(!callbacks->location_cb);
64 LOG_ALWAYS_FATAL_IF(!callbacks->status_cb);
65 LOG_ALWAYS_FATAL_IF(!callbacks->sv_status_cb);
66 LOG_ALWAYS_FATAL_IF(!callbacks->nmea_cb);
67 LOG_ALWAYS_FATAL_IF(!callbacks->set_capabilities_cb);
68 LOG_ALWAYS_FATAL_IF(!callbacks->acquire_wakelock_cb);
69 LOG_ALWAYS_FATAL_IF(!callbacks->release_wakelock_cb);
70 LOG_ALWAYS_FATAL_IF(!callbacks->create_thread_cb);
71 LOG_ALWAYS_FATAL_IF(!callbacks->request_utc_time_cb);
  /frameworks/base/services/core/jni/
com_android_server_GraphicsStatsService.cpp 45 LOG_ALWAYS_FATAL_IF(jdata == nullptr && jpath == nullptr, "Path and data can't both be null");
49 LOG_ALWAYS_FATAL_IF(buffer.size() != sizeof(ProfileData),
55 LOG_ALWAYS_FATAL_IF(pathChars.size() <= 0 || !pathChars.c_str(), "Failed to get path chars");
59 LOG_ALWAYS_FATAL_IF(packageChars.size() <= 0 || !packageChars.c_str(), "Failed to get path chars");
61 LOG_ALWAYS_FATAL_IF(!dump, "null passed for dump pointer");
69 LOG_ALWAYS_FATAL_IF(pathChars.size() <= 0 || !pathChars.c_str(), "Failed to get path chars");
83 LOG_ALWAYS_FATAL_IF(buffer.size() != sizeof(ProfileData),
86 LOG_ALWAYS_FATAL_IF(pathChars.size() <= 0 || !pathChars.c_str(), "Failed to get path chars");
88 LOG_ALWAYS_FATAL_IF(packageChars.size() <= 0 || !packageChars.c_str(), "Failed to get path chars");
  /frameworks/base/libs/hwui/
Extensions.cpp 73 LOG_ALWAYS_FATAL_IF(!mHasSRGB, "Linear blending requires ES 3.0 or EXT_sRGB");
74 LOG_ALWAYS_FATAL_IF(!mHasSRGBWriteControl, "Linear blending requires EXT_sRGB_write_control");
AnimationContext.cpp 39 LOG_ALWAYS_FATAL_IF(mCurrentFrameAnimations.mNextHandle == current,
56 LOG_ALWAYS_FATAL_IF(mCurrentFrameAnimations.mNextHandle,
73 LOG_ALWAYS_FATAL_IF(mCurrentFrameAnimations.mNextHandle == current,
95 LOG_ALWAYS_FATAL_IF(mPreviousHandle || mNextHandle,
109 LOG_ALWAYS_FATAL_IF(mRenderNode->animators().hasAnimators(),
DeviceInfo.cpp 51 LOG_ALWAYS_FATAL_IF(!sDeviceInfo, "DeviceInfo not yet initialized.");
83 LOG_ALWAYS_FATAL_IF(status, "Failed to get display info, error %d", status);
  /hardware/interfaces/drm/1.0/default/
service.cpp 43 LOG_ALWAYS_FATAL_IF(
47 LOG_ALWAYS_FATAL_IF(
  /frameworks/base/native/webview/plat_support/
jni_entry_point.cpp 32 LOG_ALWAYS_FATAL_IF(ret != JNI_OK, "AttachCurrentThread failed");
  /frameworks/native/services/inputflinger/host/
InputHost.cpp 30 LOG_ALWAYS_FATAL_IF(driver == nullptr, "Cannot register a nullptr as an InputDriver!");
  /frameworks/base/native/android/
sharedmem.cpp 37 LOG_ALWAYS_FATAL_IF(clazz == nullptr, "Failed to find android.os.SharedMemory");
39 LOG_ALWAYS_FATAL_IF(sSharedMemory.clazz == nullptr,
42 LOG_ALWAYS_FATAL_IF(sSharedMemory.getFd == nullptr,
  /hardware/libhardware/modules/input/evdev/
EvdevModule.cpp 100 LOG_ALWAYS_FATAL_IF(strcmp(module->common.id, INPUT_HARDWARE_MODULE_ID) != 0);
107 LOG_ALWAYS_FATAL_IF(strcmp(module->common.id, INPUT_HARDWARE_MODULE_ID) != 0);
108 LOG_ALWAYS_FATAL_IF(gEvdevModule == nullptr);
  /hardware/interfaces/authsecret/1.0/default/
service.cpp 37 LOG_ALWAYS_FATAL_IF(status != OK, "Could not register IAuthSecret");
  /hardware/interfaces/cas/1.0/default/
service.cpp 43 LOG_ALWAYS_FATAL_IF(
  /hardware/interfaces/configstore/1.1/default/
service.cpp 41 LOG_ALWAYS_FATAL_IF(status != OK, "Could not register ISurfaceFlingerConfigs");

Completed in 435 milliseconds

1 2 3 4 5 6 7 8 91011