Changeset 648e2ac in mainline
- Timestamp:
- 2019-11-06T13:23:59Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 959b7ec
- Parents:
- b2d1df3
- git-author:
- Jiri Svoboda <jiri@…> (2019-10-03 18:23:56)
- git-committer:
- Jiri Svoboda <jiri@…> (2019-11-06 13:23:59)
- Location:
- uspace/srv/hid/display
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/display/display.c
rb2d1df3 r648e2ac 87 87 log_msg(LOG_DEFAULT, LVL_DEBUG, "disp_window_destroy()"); 88 88 ds_client_remove_window(wnd); 89 ds_window_de lete(wnd);89 ds_window_destroy(wnd); 90 90 return EOK; 91 91 } -
uspace/srv/hid/display/test/client.c
rb2d1df3 r648e2ac 109 109 PCUT_ASSERT_NULL(wnd); 110 110 111 ds_window_de lete(w0);112 ds_window_de lete(w1);111 ds_window_destroy(w0); 112 ds_window_destroy(w1); 113 113 ds_client_destroy(client); 114 114 ds_display_destroy(disp); … … 146 146 PCUT_ASSERT_NULL(wnd); 147 147 148 ds_window_de lete(w0);149 ds_window_de lete(w1);148 ds_window_destroy(w0); 149 ds_window_destroy(w1); 150 150 ds_client_destroy(client); 151 151 ds_display_destroy(disp); … … 198 198 PCUT_ASSERT_EQUALS(event.c, revent.kbd_event.c); 199 199 200 ds_window_de lete(wnd);200 ds_window_destroy(wnd); 201 201 ds_client_destroy(client); 202 202 ds_display_destroy(disp); -
uspace/srv/hid/display/test/display.c
rb2d1df3 r648e2ac 124 124 PCUT_ASSERT_NULL(wnd); 125 125 126 ds_window_de lete(w0);127 ds_window_de lete(w1);126 ds_window_destroy(w0); 127 ds_window_destroy(w1); 128 128 ds_client_destroy(client); 129 129 ds_display_destroy(disp); … … 160 160 PCUT_ASSERT_TRUE(called_cb); 161 161 162 ds_window_de lete(wnd);162 ds_window_destroy(wnd); 163 163 ds_client_destroy(client); 164 164 ds_display_destroy(disp); -
uspace/srv/hid/display/test/window.c
rb2d1df3 r648e2ac 61 61 PCUT_ASSERT_NOT_NULL(gc); 62 62 63 ds_window_de lete(wnd);63 ds_window_destroy(wnd); 64 64 ds_client_destroy(client); 65 65 ds_display_destroy(disp); -
uspace/srv/hid/display/window.c
rb2d1df3 r648e2ac 220 220 * @param wnd Window GC 221 221 */ 222 errno_t ds_window_de lete(ds_window_t *wnd)222 errno_t ds_window_destroy(ds_window_t *wnd) 223 223 { 224 224 errno_t rc; -
uspace/srv/hid/display/window.h
rb2d1df3 r648e2ac 47 47 48 48 extern errno_t ds_window_create(ds_client_t *, ds_window_t **); 49 extern errno_t ds_window_de lete(ds_window_t *);49 extern errno_t ds_window_destroy(ds_window_t *); 50 50 extern gfx_context_t *ds_window_get_ctx(ds_window_t *); 51 51
Note:
See TracChangeset
for help on using the changeset viewer.