Lines Matching refs:h

57 mipi_syst_make_file_location32(struct mipi_syst_handle* h, mipi_syst_u16 f, mipi_syst_u16 l)  in mipi_syst_make_file_location32()  argument
59 if (h) { in mipi_syst_make_file_location32()
60 h->systh_location.el_format = 0; in mipi_syst_make_file_location32()
61 h->systh_location.el_u.loc32.etls_source_location.etls_fileID = f; in mipi_syst_make_file_location32()
62 h->systh_location.el_u.loc32.etls_source_location.etls_lineNo = l; in mipi_syst_make_file_location32()
65 return &h->systh_location; in mipi_syst_make_file_location32()
74 mipi_syst_make_file_location64(struct mipi_syst_handle* h, mipi_syst_u32 f, mipi_syst_u32 l) in mipi_syst_make_file_location64() argument
76 if (h) { in mipi_syst_make_file_location64()
77 h->systh_location.el_format = 1; in mipi_syst_make_file_location64()
78 h->systh_location.el_u.loc64.etls_source_location.etls_fileID = f; in mipi_syst_make_file_location64()
79 h->systh_location.el_u.loc64.etls_source_location.etls_lineNo = l; in mipi_syst_make_file_location64()
82 return &h->systh_location; in mipi_syst_make_file_location64()
91 mipi_syst_make_address_location(struct mipi_syst_handle* h, void *p) in mipi_syst_make_address_location() argument
93 if (h) { in mipi_syst_make_address_location()
96 h->systh_location.el_format = 3; in mipi_syst_make_address_location()
97 h->systh_location.el_u.loc64.etls_code_location = (mipi_syst_u64) p; in mipi_syst_make_address_location()
99 h->systh_location.el_format = 2; in mipi_syst_make_address_location()
100 h->systh_location.el_u.loc32.etls_code_location = (mipi_syst_u32) p; in mipi_syst_make_address_location()
103 return &h->systh_location; in mipi_syst_make_address_location()
111 MIPI_SYST_INLINE void MIPI_SYST_CALLCONV mipi_syst_make_param0(struct mipi_syst_handle* h) in mipi_syst_make_param0() argument
113 if (h) in mipi_syst_make_param0()
114 h->systh_param_count = 0; in mipi_syst_make_param0()
119 MIPI_SYST_INLINE void MIPI_SYST_CALLCONV mipi_syst_make_param1(struct mipi_syst_handle* h, in mipi_syst_make_param1() argument
122 if (h) { in mipi_syst_make_param1()
123 h->systh_param_count = 1; in mipi_syst_make_param1()
124 h->systh_param[0] = p1; in mipi_syst_make_param1()
131 MIPI_SYST_INLINE void MIPI_SYST_CALLCONV mipi_syst_make_param2(struct mipi_syst_handle* h, in mipi_syst_make_param2() argument
135 if (h) { in mipi_syst_make_param2()
136 h->systh_param_count = 2; in mipi_syst_make_param2()
137 h->systh_param[0] = p1; in mipi_syst_make_param2()
138 h->systh_param[1] = p2; in mipi_syst_make_param2()
145 MIPI_SYST_INLINE void MIPI_SYST_CALLCONV mipi_syst_make_param3(struct mipi_syst_handle* h, in mipi_syst_make_param3() argument
150 if (h) { in mipi_syst_make_param3()
151 h->systh_param_count = 3; in mipi_syst_make_param3()
152 h->systh_param[0] = p1; in mipi_syst_make_param3()
153 h->systh_param[1] = p2; in mipi_syst_make_param3()
154 h->systh_param[2] = p3; in mipi_syst_make_param3()
161 MIPI_SYST_INLINE void MIPI_SYST_CALLCONV mipi_syst_make_param4(struct mipi_syst_handle* h, in mipi_syst_make_param4() argument
167 if (h) { in mipi_syst_make_param4()
168 h->systh_param_count = 4; in mipi_syst_make_param4()
169 h->systh_param[0] = p1; in mipi_syst_make_param4()
170 h->systh_param[1] = p2; in mipi_syst_make_param4()
171 h->systh_param[2] = p3; in mipi_syst_make_param4()
172 h->systh_param[3] = p4; in mipi_syst_make_param4()
179 MIPI_SYST_INLINE void MIPI_SYST_CALLCONV mipi_syst_make_param5(struct mipi_syst_handle* h, in mipi_syst_make_param5() argument
186 if (h) { in mipi_syst_make_param5()
187 h->systh_param_count = 5; in mipi_syst_make_param5()
188 h->systh_param[0] = p1; in mipi_syst_make_param5()
189 h->systh_param[1] = p2; in mipi_syst_make_param5()
190 h->systh_param[2] = p3; in mipi_syst_make_param5()
191 h->systh_param[3] = p4; in mipi_syst_make_param5()
192 h->systh_param[4] = p5; in mipi_syst_make_param5()
199 MIPI_SYST_INLINE void MIPI_SYST_CALLCONV mipi_syst_make_param6(struct mipi_syst_handle* h, in mipi_syst_make_param6() argument
207 if (h) { in mipi_syst_make_param6()
208 h->systh_param_count = 6; in mipi_syst_make_param6()
209 h->systh_param[0] = p1; in mipi_syst_make_param6()
210 h->systh_param[1] = p2; in mipi_syst_make_param6()
211 h->systh_param[2] = p3; in mipi_syst_make_param6()
212 h->systh_param[3] = p4; in mipi_syst_make_param6()
213 h->systh_param[4] = p5; in mipi_syst_make_param6()
214 h->systh_param[5] = p6; in mipi_syst_make_param6()