MCPcopy Create free account
hub / github.com/MusicPlayerDaemon/MPD / queue_print_info

Function queue_print_info

src/queue/Print.cxx:40–49  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

38}
39
40void
41queue_print_info(Response &r, const Queue &queue,
42 unsigned start, unsigned end)
43{
44 assert(start <= end);
45 assert(end <= queue.GetLength());
46
47 for (unsigned i = start; i < end; ++i)
48 queue_print_song_info(r, queue, i);
49}
50
51void
52queue_print_uris(Response &r, const Queue &queue,

Callers 2

playlist_print_infoFunction · 0.50
playlist_print_currentFunction · 0.50

Calls 2

GetLengthMethod · 0.80
queue_print_song_infoFunction · 0.70

Tested by

no test coverage detected