Lines Matching refs:STATIC
52 STATIC mp_obj_t uvoice_player_new(const mp_obj_type_t *type, size_t n_args, size_t n_kw, const mp_o… in uvoice_player_new()
66 STATIC mp_obj_t uvoice_open(mp_obj_t self_in) in uvoice_open()
82 STATIC MP_DEFINE_CONST_FUN_OBJ_1(uvoice_open_obj, uvoice_open);
84 STATIC mp_obj_t uvoice_close(mp_obj_t self_in) in uvoice_close()
98 STATIC MP_DEFINE_CONST_FUN_OBJ_1(uvoice_close_obj, uvoice_close);
100 STATIC mp_obj_t uvoice_release(mp_obj_t self_in) in uvoice_release()
112 STATIC MP_DEFINE_CONST_FUN_OBJ_1(uvoice_release_obj, uvoice_release);
114 STATIC mp_obj_t uvoice_play(mp_obj_t self_in, mp_obj_t source_in) in uvoice_play()
130 STATIC MP_DEFINE_CONST_FUN_OBJ_2(uvoice_play_obj, uvoice_play);
132 STATIC mp_obj_t uvoice_stop(mp_obj_t self_in) in uvoice_stop()
139 STATIC MP_DEFINE_CONST_FUN_OBJ_1(uvoice_stop_obj, uvoice_stop);
141 STATIC mp_obj_t uvoice_pause(mp_obj_t self_in) in uvoice_pause()
148 STATIC MP_DEFINE_CONST_FUN_OBJ_1(uvoice_pause_obj, uvoice_pause);
150 STATIC mp_obj_t uvoice_resume(mp_obj_t self_in) in uvoice_resume()
157 STATIC MP_DEFINE_CONST_FUN_OBJ_1(uvoice_resume_obj, uvoice_resume);
159 STATIC mp_obj_t uvoice_complete(mp_obj_t self_in) in uvoice_complete()
166 STATIC MP_DEFINE_CONST_FUN_OBJ_1(uvoice_complete_obj, uvoice_complete);
168 STATIC mp_obj_t uvoice_stop_async(mp_obj_t self_in) in uvoice_stop_async()
175 STATIC MP_DEFINE_CONST_FUN_OBJ_1(uvoice_stop_async_obj, uvoice_stop_async);
177 STATIC mp_obj_t uvoice_pause_async(mp_obj_t self_in) in uvoice_pause_async()
184 STATIC MP_DEFINE_CONST_FUN_OBJ_1(uvoice_pause_async_obj, uvoice_pause_async);
186 STATIC mp_obj_t uvoice_resume_async(mp_obj_t self_in) in uvoice_resume_async()
193 STATIC MP_DEFINE_CONST_FUN_OBJ_1(uvoice_resume_async_obj, uvoice_resume_async);
195 STATIC mp_obj_t uvoice_set_source(mp_obj_t self_in, mp_obj_t source_in) in uvoice_set_source()
203 STATIC MP_DEFINE_CONST_FUN_OBJ_2(uvoice_set_source_obj, uvoice_set_source);
205 STATIC mp_obj_t uvoice_clr_source(mp_obj_t self_in) in uvoice_clr_source()
212 STATIC MP_DEFINE_CONST_FUN_OBJ_1(uvoice_clr_source_obj, uvoice_clr_source);
214 STATIC mp_obj_t uvoice_set_stream(size_t n_args, const mp_obj_t *args) in uvoice_set_stream()
230 STATIC MP_DEFINE_CONST_FUN_OBJ_VAR(uvoice_set_stream_obj, 4, uvoice_set_stream);
232 STATIC mp_obj_t uvoice_put_stream(mp_obj_t self_in, mp_obj_t buffer_in, mp_obj_t nbytes_in) in uvoice_put_stream()
244 STATIC MP_DEFINE_CONST_FUN_OBJ_3(uvoice_put_stream_obj, uvoice_put_stream);
246 STATIC mp_obj_t uvoice_clr_stream(mp_obj_t self_in, mp_obj_t immediate_in) in uvoice_clr_stream()
254 STATIC MP_DEFINE_CONST_FUN_OBJ_2(uvoice_clr_stream_obj, uvoice_clr_stream);
256 STATIC mp_obj_t uvoice_set_pcminfo(size_t n_args, const mp_obj_t *args) in uvoice_set_pcminfo()
274 STATIC MP_DEFINE_CONST_FUN_OBJ_VAR(uvoice_set_pcminfo_obj, 5, uvoice_set_pcminfo);
276 STATIC mp_obj_t uvoice_getDuration(mp_obj_t self_in) in uvoice_getDuration()
286 STATIC MP_DEFINE_CONST_FUN_OBJ_1(uvoice_getDuration_obj, uvoice_getDuration);
288 STATIC mp_obj_t uvoice_getPosition(mp_obj_t self_in) in uvoice_getPosition()
298 STATIC MP_DEFINE_CONST_FUN_OBJ_1(uvoice_getPosition_obj, uvoice_getPosition);
300 STATIC mp_obj_t uvoice_setVolume(mp_obj_t self_in, mp_obj_t volume_in) in uvoice_setVolume()
308 STATIC MP_DEFINE_CONST_FUN_OBJ_2(uvoice_setVolume_obj, uvoice_setVolume);
310 STATIC mp_obj_t uvoice_getVolume(mp_obj_t self_in) in uvoice_getVolume()
320 STATIC MP_DEFINE_CONST_FUN_OBJ_1(uvoice_getVolume_obj, uvoice_getVolume);
322 STATIC mp_obj_t uvoice_volume_range(mp_obj_t self_in) in uvoice_volume_range()
342 STATIC MP_DEFINE_CONST_FUN_OBJ_1(uvoice_volume_range_obj, uvoice_volume_range);
344 STATIC mp_obj_t uvoice_seekTo(mp_obj_t self_in, mp_obj_t second_in) in uvoice_seekTo()
352 STATIC MP_DEFINE_CONST_FUN_OBJ_2(uvoice_seekTo_obj, uvoice_seekTo);
354 STATIC mp_obj_t uvoice_playback(mp_obj_t self_in, mp_obj_t source_in) in uvoice_playback()
362 STATIC MP_DEFINE_CONST_FUN_OBJ_2(uvoice_playback_obj, uvoice_playback);
364 STATIC mp_obj_t uvoice_wait_complete(mp_obj_t self_in) in uvoice_wait_complete()
371 STATIC MP_DEFINE_CONST_FUN_OBJ_1(uvoice_wait_complete_obj, uvoice_wait_complete);
373 STATIC mp_obj_t uvoice_download(mp_obj_t self_in, mp_obj_t name_in) in uvoice_download()
380 STATIC MP_DEFINE_CONST_FUN_OBJ_2(uvoice_download_obj, uvoice_download);
382 STATIC mp_obj_t uvoice_download_abort(mp_obj_t self_in) in uvoice_download_abort()
389 STATIC MP_DEFINE_CONST_FUN_OBJ_1(uvoice_download_abort_obj, uvoice_download_abort);
391 STATIC mp_obj_t uvoice_cache_config(mp_obj_t self_in, mp_obj_t config_dict) in uvoice_cache_config()
403 STATIC MP_DEFINE_CONST_FUN_OBJ_2(uvoice_cache_config_obj, uvoice_cache_config);
405 STATIC mp_obj_t uvoice_set_fade(mp_obj_t self_in, mp_obj_t out_period_in, mp_obj_t in_period_in) in uvoice_set_fade()
414 STATIC MP_DEFINE_CONST_FUN_OBJ_3(uvoice_set_fade_obj, uvoice_set_fade);
416 STATIC mp_obj_t uvoice_set_format(mp_obj_t self_in, mp_obj_t format_in) in uvoice_set_format()
424 STATIC MP_DEFINE_CONST_FUN_OBJ_2(uvoice_set_format_obj, uvoice_set_format);
426 STATIC mp_obj_t uvoice_set_standby(mp_obj_t self_in, mp_obj_t msec_in) in uvoice_set_standby()
434 STATIC MP_DEFINE_CONST_FUN_OBJ_2(uvoice_set_standby_obj, uvoice_set_standby);
436 STATIC mp_obj_t uvoice_eq_enable(mp_obj_t self_in, mp_obj_t enable_in) in uvoice_eq_enable()
444 STATIC MP_DEFINE_CONST_FUN_OBJ_2(uvoice_eq_enable_obj, uvoice_eq_enable);
446 STATIC mp_obj_t uvoice_state_dump(mp_obj_t self_in) in uvoice_state_dump()
453 STATIC MP_DEFINE_CONST_FUN_OBJ_1(uvoice_state_dump_obj, uvoice_state_dump);
455 STATIC mp_obj_t uvoice_pcmdump_enable(mp_obj_t self_in, mp_obj_t enable_in) in uvoice_pcmdump_enable()
463 STATIC MP_DEFINE_CONST_FUN_OBJ_2(uvoice_pcmdump_enable_obj, uvoice_pcmdump_enable);
465 STATIC mp_obj_t uvoice_getState(mp_obj_t self_in) in uvoice_getState()
477 STATIC MP_DEFINE_CONST_FUN_OBJ_1(uvoice_getState_obj, uvoice_getState);
479 STATIC mp_obj_t uvoice_get_delay(mp_obj_t self_in) in uvoice_get_delay()
487 STATIC MP_DEFINE_CONST_FUN_OBJ_1(uvoice_get_delay_obj, uvoice_get_delay);
489 STATIC mp_obj_t uvoice_get_mediainfo(mp_obj_t self_in) in uvoice_get_mediainfo()
525 STATIC MP_DEFINE_CONST_FUN_OBJ_1(uvoice_get_mediainfo_obj, uvoice_get_mediainfo);
527 STATIC mp_obj_t uvoice_get_cacheinfo(mp_obj_t self_in) in uvoice_get_cacheinfo()
535 STATIC MP_DEFINE_CONST_FUN_OBJ_1(uvoice_get_cacheinfo_obj, uvoice_get_cacheinfo);
537 STATIC mp_obj_t uvoice_format_support(mp_obj_t self_in, mp_obj_t format_in) in uvoice_format_support()
545 STATIC MP_DEFINE_CONST_FUN_OBJ_2(uvoice_format_support_obj, uvoice_format_support);
547 STATIC const mp_rom_map_elem_t uvoice_module_player_globals_table[] = {
562 STATIC MP_DEFINE_CONST_DICT(uvoice_module_player_globals, uvoice_module_player_globals_table);