Home
last modified time | relevance | path

Searched refs:msg (Results 1 – 12 of 12) sorted by relevance

/lvgl-3.7.0/tests/src/test_cases/
Dtest_txt.c76 const char * msg = "Hello "; in test_txt_should_insert_string_into_another() local
79 size_t msg_len = strlen(msg); in test_txt_should_insert_string_into_another()
81 strcpy(target, msg); in test_txt_should_insert_string_into_another()
90 const char * msg = "Hello "; in test_txt_should_handle_null_pointers_when_inserting() local
92 size_t msg_len = strlen(msg); in test_txt_should_handle_null_pointers_when_inserting()
94 strcpy(target, msg); in test_txt_should_handle_null_pointers_when_inserting()
108 char msg[] = "Hello World"; in test_txt_cut_happy_path() local
110 _lv_txt_cut(msg, 0, 6); in test_txt_cut_happy_path()
112 TEST_ASSERT_EQUAL_STRING("World", msg); in test_txt_cut_happy_path()
117 char msg[] = "Hello World"; in test_txt_cut_should_handle_len_longer_than_string_length() local
[all …]
/lvgl-3.7.0/tests/unity/
Dunity_support.h17 # define TEST_ASSERT_EQUAL_SCREENSHOT_MESSAGE(path, msg) TEST_PRINTF(msg); TEST_IGNORE_MESSAGE("… argument
26 # define TEST_ASSERT_EQUAL_SCREENSHOT_MESSAGE(path, msg) if(LV_HOR_RES != 800 || LV_VER_RES != … argument
27 … TEST_PRINTF(msg); \
30 … TEST_ASSERT_MESSAGE(lv_test_assert_img_eq(path), msg); \
35 …ine TEST_ASSERT_EQUAL_COLOR_MESSAGE(c1, c2, msg) TEST_ASSERT_EQUAL_UINT32_MESSAGE(c1.full, c2… argument
Dunity.c566 static void UnityAddMsgIfSpecified(const char* msg) in UnityAddMsgIfSpecified() argument
568 if (msg) in UnityAddMsgIfSpecified()
588 UnityPrint(msg); in UnityAddMsgIfSpecified()
656 const char* msg) in UnityIsOneArrayNull() argument
666 UnityAddMsgIfSpecified(msg); in UnityIsOneArrayNull()
675 UnityAddMsgIfSpecified(msg); in UnityIsOneArrayNull()
690 const char* msg, in UnityAssertBits() argument
702 UnityAddMsgIfSpecified(msg); in UnityAssertBits()
710 const char* msg, in UnityAssertEqualNumber() argument
723 UnityAddMsgIfSpecified(msg); in UnityAssertEqualNumber()
[all …]
Dunity_internals.h554 const char* msg,
561 const char *msg,
568 const char* msg,
576 const char* msg,
581 const char* msg,
587 const char* msg,
593 const char* msg,
601 const char* msg,
608 const char* msg,
616 const char* msg,
[all …]
/lvgl-3.7.0/examples/others/msg/
Dindex.rst5 .. lv_example:: others/msg/lv_example_msg_1
11 .. lv_example:: others/msg/lv_example_msg_2
17 .. lv_example:: others/msg/lv_example_msg_3
/lvgl-3.7.0/src/misc/
Dlv_log.c97 char msg[256]; in _lv_log_add() local
98 lv_vsnprintf(msg, sizeof(msg), format, args); in _lv_log_add()
100 … lvl_prefix[level], t / 1000, t % 1000, t - last_log_time, func, msg, &file[p], line); in _lv_log_add()
Dlv_assert.h45 #define LV_ASSERT_MSG(expr, msg) \ argument
48 LV_LOG_ERROR("Asserted at expression: %s (%s)", #expr, msg); \
/lvgl-3.7.0/docs/others/
Dindex.md13 msg
Dmsg.md86 .. include:: ../../examples/others/msg/index.rst
/lvgl-3.7.0/src/draw/
Dlv_draw_img.c32 static void show_error(lv_draw_ctx_t * draw_ctx, const lv_area_t * coords, const char * msg);
354 static void show_error(lv_draw_ctx_t * draw_ctx, const lv_area_t * coords, const char * msg) argument
363 lv_draw_label(draw_ctx, &label_dsc, coords, msg, NULL);
/lvgl-3.7.0/src/extra/others/msg/
Dlv_msg.h36 typedef void (*lv_msg_subscribe_cb_t)(void * s, lv_msg_t * msg);
/lvgl-3.7.0/docs/
DCHANGELOG.md190 - feat(msg): add lv_msg_unsubcribe_obj [`6af0179`](https://github.com/lvgl/lvgl/commit/6af01798d82f…
279 - fix(msg): fix typos in API by adding wrappers [`41fa416`](https://github.com/lvgl/lvgl/commit/41f…
357 …munication between components easier. See more [here](https://docs.lvgl.io/master/others/msg.html).
408 - feat(msg): add publisher-subscriber messaging [`79a29d7`](https://github.com/lvgl/lvgl/commit/79a…