Home
last modified time | relevance | path

Searched refs:pl_Unlocked (Results 1 – 8 of 8) sorted by relevance

/dports/multimedia/vlc/vlc-3.0.16/include/
H A Dvlc_playlist.h209 pl_Unlocked = false enumerator
233 #define playlist_Play(p) playlist_Control(p,PLAYLIST_PLAY, pl_Unlocked )
235 playlist_Control(p, PLAYLIST_TOGGLE_PAUSE, pl_Unlocked)
236 #define playlist_Stop(p) playlist_Control(p,PLAYLIST_STOP, pl_Unlocked )
237 #define playlist_Next(p) playlist_Control(p,PLAYLIST_SKIP, pl_Unlocked, 1)
238 #define playlist_Prev(p) playlist_Control(p,PLAYLIST_SKIP, pl_Unlocked, -1)
239 #define playlist_Skip(p,i) playlist_Control(p,PLAYLIST_SKIP, pl_Unlocked, (i) )
241 playlist_Control(p, PLAYLIST_PAUSE, pl_Unlocked)
243 playlist_Control(p, PLAYLIST_RESUME, pl_Unlocked)
/dports/multimedia/vlc/vlc-3.0.16/modules/gui/skins2/commands/
H A Dcmd_playlist.cpp99 playlist_Control(getPL(), PLAYLIST_PLAY, pl_Unlocked); in execute()
/dports/multimedia/vlc/vlc-3.0.16/modules/gui/qt/
H A Ddialogs_provider.cpp751 playlist_Clear( THEPL, pl_Unlocked ); in streamingDialog()
785 playlist_Control(THEPL,PLAYLIST_PLAY,pl_Unlocked); in streamingDialog()
/dports/multimedia/vlc/vlc-3.0.16/modules/lua/libs/
H A Dplaylist.c103 playlist_Clear( p_playlist, pl_Unlocked ); in vlclua_playlist_clear()
/dports/multimedia/vlc/vlc-3.0.16/modules/control/
H A Dhotkeys.c471 playlist_Clear( p_playlist, pl_Unlocked ); in PutAction()
H A Doldrc.c1303 playlist_Clear( p_playlist, pl_Unlocked ); in Playlist()
/dports/multimedia/vlc/vlc-3.0.16/doc/
H A DChangeLog-200823148 Use pl_Locked and pl_Unlocked
23154 Use pl_Locked and pl_Unlocked.
23420 Use pl_Locked and pl_Unlocked.
H A DChangeLog-201416944 Qt: use pl_Unlocked in playlist_Add calls