Lines Matching +full:unused +full:- +full:function
9 * http://www.apache.org/licenses/LICENSE-2.0
58 /* Function Definitions */
63 * \if Function name : ihevce_printf \endif
66 * This function implements printf
72 UNUSED(pv_handle); in ihevce_printf()
73 UNUSED(format); in ihevce_printf()
79 * \if Function name : ihevce_fopen \endif
82 * This function implements fopen
88 UNUSED(pv_handle); in ihevce_fopen()
89 UNUSED(filename); in ihevce_fopen()
90 UNUSED(mode); in ihevce_fopen()
96 * \if Function name : ihevce_fclose \endif
99 * This function implements fclose
105 UNUSED(pv_handle); in ihevce_fclose()
106 UNUSED(file_ptr); in ihevce_fclose()
107 return -1; in ihevce_fclose()
112 * \if Function name : ihevce_fflush \endif
115 * This function implements fflush
121 UNUSED(pv_handle); in ihevce_fflush()
122 UNUSED(file_ptr); in ihevce_fflush()
123 return -1; in ihevce_fflush()
128 * \if Function name : ihevce_fseek \endif
131 * This function implements fseek
137 UNUSED(pv_handle); in ihevce_fseek()
138 UNUSED(file_ptr); in ihevce_fseek()
139 UNUSED(offset); in ihevce_fseek()
140 UNUSED(origin); in ihevce_fseek()
141 return -1; in ihevce_fseek()
146 * \if Function name : ihevce_fscanf \endif
149 * This function implements fscanf
156 UNUSED(pv_handle); in ihevce_fscanf()
157 UNUSED(e_data_type); in ihevce_fscanf()
158 UNUSED(file_ptr); in ihevce_fscanf()
159 UNUSED(format); in ihevce_fscanf()
160 UNUSED(pv_dst); in ihevce_fscanf()
166 * \if Function name : ihevce_fgets \endif
169 * This function implements fgets
175 UNUSED(pv_handle); in ihevce_fgets()
176 UNUSED(pi1_str); in ihevce_fgets()
177 UNUSED(i4_size); in ihevce_fgets()
178 UNUSED(pf_stream); in ihevce_fgets()
184 * \if Function name : ihevce_fread \endif
187 * This function implements fread
194 UNUSED(pv_handle); in ihevce_fread()
195 UNUSED(pv_dst); in ihevce_fread()
196 UNUSED(element_size); in ihevce_fread()
197 UNUSED(count); in ihevce_fread()
198 UNUSED(file_ptr); in ihevce_fread()
204 * \if Function name : ihevce_sscanf \endif
207 * This function implements sscanf
213 UNUSED(pv_handle); in ihevce_sscanf()
214 UNUSED(pv_src); in ihevce_sscanf()
215 UNUSED(format); in ihevce_sscanf()
216 UNUSED(p_dst_int); in ihevce_sscanf()
222 * \if Function name : ihevce_fprintf \endif
225 * This function implements fprintf
231 UNUSED(pv_handle); in ihevce_fprintf()
232 UNUSED(file_ptr); in ihevce_fprintf()
233 UNUSED(format); in ihevce_fprintf()
239 * \if Function name : ihevce_fwrite \endif
242 * This function implements fwrite
249 UNUSED(pv_handle); in ihevce_fwrite()
250 UNUSED(pv_src); in ihevce_fwrite()
251 UNUSED(element_size); in ihevce_fwrite()
252 UNUSED(count); in ihevce_fwrite()
253 UNUSED(file_ptr); in ihevce_fwrite()
259 * \if Function name : ihevce_sprintf \endif
262 * This function implements sprintf
268 UNUSED(pv_handle); in ihevce_sprintf()
269 UNUSED(dst); in ihevce_sprintf()
270 UNUSED(format); in ihevce_sprintf()
276 * \if Function name : ihevce_init_sys_api \endif
279 * This function initialises sysstem call apis
295 ps_sys_api->pv_cb_handle = pv_cb_handle; in ihevce_init_sys_api()
298 ps_sys_api->ihevce_printf = ihevce_printf; in ihevce_init_sys_api()
300 ps_sys_api->ihevce_sscanf = ihevce_sscanf; in ihevce_init_sys_api()
301 ps_sys_api->ihevce_sprintf = ihevce_sprintf; in ihevce_init_sys_api()
304 ps_sys_api->s_file_io_api.ihevce_fopen = ihevce_fopen; in ihevce_init_sys_api()
305 ps_sys_api->s_file_io_api.ihevce_fclose = ihevce_fclose; in ihevce_init_sys_api()
306 ps_sys_api->s_file_io_api.ihevce_fflush = ihevce_fflush; in ihevce_init_sys_api()
307 ps_sys_api->s_file_io_api.ihevce_fseek = ihevce_fseek; in ihevce_init_sys_api()
309 ps_sys_api->s_file_io_api.ihevce_fscanf = ihevce_fscanf; in ihevce_init_sys_api()
310 ps_sys_api->s_file_io_api.ihevce_fread = ihevce_fread; in ihevce_init_sys_api()
312 ps_sys_api->s_file_io_api.ihevce_fprintf = ihevce_fprintf; in ihevce_init_sys_api()
313 ps_sys_api->s_file_io_api.ihevce_fwrite = ihevce_fwrite; in ihevce_init_sys_api()
314 ps_sys_api->s_file_io_api.ihevce_fgets = ihevce_fgets; in ihevce_init_sys_api()