comparison src/ui/mfw/mfw_mfw.h @ 188:92abb46dc1ba

src/ui/mfw/*.[ch]: rm trailing white space
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 19 Jan 2021 06:10:27 +0000
parents 67bfe9f274f6
children
comparison
equal deleted inserted replaced
187:a33dd8a5dcc9 188:92abb46dc1ba
15 TO DO : 15 TO DO :
16 16
17 $History:: mfw_mfw.h $ 17 $History:: mfw_mfw.h $
18 18
19 Sep 14, 2007 REF: OMAPS00145866 Adrian Salido 19 Sep 14, 2007 REF: OMAPS00145866 Adrian Salido
20 Description: FT - MMI: Wrong trace class 20 Description: FT - MMI: Wrong trace class
21 Solution: Added some event trace function so that internal event traces for events that 21 Solution: Added some event trace function so that internal event traces for events that
22 are too low for non-MMI people and against TI coding convention. 22 are too low for non-MMI people and against TI coding convention.
23 23
24 * ***************** Version 14 ***************** 24 * ***************** Version 14 *****************
25 Dec 22, 2005 REF: ENH xdeepadh 25 Dec 22, 2005 REF: ENH xdeepadh
26 Description: Image Viewer Application 26 Description: Image Viewer Application
27 Solution: Implemeted the Image Viewer to view the jpeg images 27 Solution: Implemeted the Image Viewer to view the jpeg images
28 28
29 * Dec 22, 2004 REF: CRR MFW-SPR-27847 xnkulkar 29 * Dec 22, 2004 REF: CRR MFW-SPR-27847 xnkulkar
30 * Description: MFW memory size variable changed from U16 -> U32 30 * Description: MFW memory size variable changed from U16 -> U32
31 * Solution: The use of variable U16 has been replaced with U32 31 * Solution: The use of variable U16 has been replaced with U32
32 32
33 * ***************** Version 13 ***************** 33 * ***************** Version 13 *****************
95 */ 95 */
96 96
97 #ifndef _DEF_MFW_MFW_H_ 97 #ifndef _DEF_MFW_MFW_H_
98 #define _DEF_MFW_MFW_H_ 98 #define _DEF_MFW_MFW_H_
99 99
100 /* 100 /*
101 x0083025 on Sep 14, 2007 for OMAPS00145866 (adrian) 101 x0083025 on Sep 14, 2007 for OMAPS00145866 (adrian)
102 MMI Internal Development trace events replacement 102 MMI Internal Development trace events replacement
103 */ 103 */
104 #include "vsi.h" /* for TRACE_FUNCTION dependency */ 104 #include "vsi.h" /* for TRACE_FUNCTION dependency */
105 #define MMI_TRACE_EVENT(a) TRACE_FUNCTION(a) 105 #define MMI_TRACE_EVENT(a) TRACE_FUNCTION(a)
106 #define MMI_TRACE_EVENT_P1(f, a1) TRACE_FUNCTION_P1(f, a1) 106 #define MMI_TRACE_EVENT_P1(f, a1) TRACE_FUNCTION_P1(f, a1)
138 #define TIMER_START(C,I,T) vsi_t_start_nc(I,T) 138 #define TIMER_START(C,I,T) vsi_t_start_nc(I,T)
139 #define TIMER_PSTART(C,I,T,R) vsi_t_pstart_nc(I,T,R) 139 #define TIMER_PSTART(C,I,T,R) vsi_t_pstart_nc(I,T,R)
140 #define TIMER_STOP(C,I) vsi_t_stop_nc(I) 140 #define TIMER_STOP(C,I) vsi_t_stop_nc(I)
141 #define TIMER_STATUS(C,I,T) vsi_t_status_nc(I,T) 141 #define TIMER_STATUS(C,I,T) vsi_t_status_nc(I,T)
142 #define SUSPEND_SELF(C,T) vsi_t_sleep_nc(T) 142 #define SUSPEND_SELF(C,T) vsi_t_sleep_nc(T)
143 #define SYSTEM_TIME(C,T) vsi_t_time_nc(T) 143 #define SYSTEM_TIME(C,T) vsi_t_time_nc(T)
144 #else /* TI_PS_OP_VSI_NO_CALL_ID */ 144 #else /* TI_PS_OP_VSI_NO_CALL_ID */
145 #define TIMER_START(C,I,T) vsi_t_start(C,I,T) 145 #define TIMER_START(C,I,T) vsi_t_start(C,I,T)
146 #define TIMER_PSTART(C,I,T,R) vsi_t_pstart(C,I,T,R) 146 #define TIMER_PSTART(C,I,T,R) vsi_t_pstart(C,I,T,R)
147 #define TIMER_STOP(C,I) vsi_t_stop(C,I) 147 #define TIMER_STOP(C,I) vsi_t_stop(C,I)
148 #define TIMER_STATUS(C,I,T) vsi_t_status(C,I,T) 148 #define TIMER_STATUS(C,I,T) vsi_t_status(C,I,T)
149 #define SUSPEND_SELF(C,T) vsi_t_sleep(C,T) 149 #define SUSPEND_SELF(C,T) vsi_t_sleep(C,T)
150 #define SYSTEM_TIME(C,T) vsi_t_time(C,T) 150 #define SYSTEM_TIME(C,T) vsi_t_time(C,T)
151 #endif /* TI_PS_OP_VSI_NO_CALL_ID */ 151 #endif /* TI_PS_OP_VSI_NO_CALL_ID */
152 152
153 153
154 /**************************************//* COMMON MFW TYPES */ 154 /**************************************//* COMMON MFW TYPES */
155 155
213 #ifdef BTE_MOBILE 213 #ifdef BTE_MOBILE
214 MfwTypBte, /* bluetooth handling */ 214 MfwTypBte, /* bluetooth handling */
215 #endif 215 #endif
216 MfwTypCt, /* camera test handling*/ 216 MfwTypCt, /* camera test handling*/
217 217
218 #ifdef FF_MMI_FILEMANAGER 218 #ifdef FF_MMI_FILEMANAGER
219 MfwTypfm, 219 MfwTypfm,
220 #endif 220 #endif
221 MfwTypMax /* end of types (last !!) */ 221 MfwTypMax /* end of types (last !!) */
222 } MfwTyp; 222 } MfwTyp;
223 223
253 253
254 // Dec 22, 2004 REF: CRR MFW-SPR-27847 xnkulkar 254 // Dec 22, 2004 REF: CRR MFW-SPR-27847 xnkulkar
255 // Description: MFW memory size variable changed from U16 -> U32 255 // Description: MFW memory size variable changed from U16 -> U32
256 // Solution: The use of variable U16 has been replaced with U32 256 // Solution: The use of variable U16 has been replaced with U32
257 257
258 MfwRes mfwInit (void *externalRoot, U32 dynMemSize); 258 MfwRes mfwInit (void *externalRoot, U32 dynMemSize);
259 void mfwExit (void); 259 void mfwExit (void);
260 MfwHdr *mfwAppend (MfwHdr **h, MfwHdr *e); 260 MfwHdr *mfwAppend (MfwHdr **h, MfwHdr *e);
261 MfwHdr **mfwRemove (MfwHdr *e); 261 MfwHdr **mfwRemove (MfwHdr *e);
262 MfwHdr *mfwInsert (MfwHdr *h, MfwHdr *e); 262 MfwHdr *mfwInsert (MfwHdr *h, MfwHdr *e);
263 MfwHnd mfwParent (MfwHdr *h); 263 MfwHnd mfwParent (MfwHdr *h);