Searched refs:long_str (Results 1 - 3 of 3) sorted by relevance
/base/location/frameworks/js/napi/notification/src/ |
H A D | notification_napi_convert_content.cpp | 245 char long_str[LONG_STR_MAX_SIZE + 1] = {0}; in GetNotificationLongTextContentDetailed() local 264 NAPI_CALL(env, napi_get_value_string_utf8(env, longContentResult, long_str, LONG_STR_MAX_SIZE, &strLen)); in GetNotificationLongTextContentDetailed() 265 if (std::strlen(long_str) == 0) { in GetNotificationLongTextContentDetailed() 269 longContent->SetLongText(long_str); in GetNotificationLongTextContentDetailed() 270 ANS_LOGD("longText::longText = %{public}s", long_str); in GetNotificationLongTextContentDetailed()
|
/base/notification/distributed_notification_service/frameworks/js/napi/src/ |
H A D | common_convert_content.cpp | 643 char long_str[LONG_STR_MAX_SIZE + 1] = {0}; in GetNotificationLongTextContentDetailed() local 662 NAPI_CALL(env, napi_get_value_string_utf8(env, longContentResult, long_str, LONG_STR_MAX_SIZE, &strLen)); in GetNotificationLongTextContentDetailed() 663 if (std::strlen(long_str) == 0) { in GetNotificationLongTextContentDetailed() 667 longContent->SetLongText(long_str); in GetNotificationLongTextContentDetailed() 668 ANS_LOGD("longText::longText = %{public}s", long_str); in GetNotificationLongTextContentDetailed()
|
/base/notification/distributed_notification_service/frameworks/cj/ffi/src/ |
H A D | notification_utils.cpp | 286 char long_str[LONG_STR_MAX_SIZE + 1] = {0}; in GetNotificationLongTextContentDetailed() local 298 if (strcpy_s(long_str, LONG_STR_MAX_SIZE + 1, contentResult->longText) != EOK) { in GetNotificationLongTextContentDetailed() 301 if (strlen(long_str) == 0) { in GetNotificationLongTextContentDetailed() 305 longContent->SetLongText(std::string(long_str)); in GetNotificationLongTextContentDetailed()
|
Completed in 11 milliseconds