Home
last modified time | relevance | path

Searched refs:fNewCount (Results 1 – 2 of 2) sorted by relevance

/haiku/src/apps/mediaplayer/playlist/
H A DImportPLItemsCommand.cpp37 fNewCount(0), in ImportPLItemsCommand()
50 fNewCount = temp.CountItems(); in ImportPLItemsCommand()
51 if (fNewCount <= 0) in ImportPLItemsCommand()
54 fNewItems = new (nothrow) PlaylistItem*[fNewCount]; in ImportPLItemsCommand()
57 memset(fNewItems, 0, fNewCount * sizeof(PlaylistItem*)); in ImportPLItemsCommand()
61 for (int32 i = 0; i < fNewCount; i++) { in ImportPLItemsCommand()
66 _CleanUp(fNewItems, fNewCount, true); in ImportPLItemsCommand()
72 fNewCount = added; in ImportPLItemsCommand()
82 _CleanUp(fNewItems, fNewCount, true); in ImportPLItemsCommand()
92 _CleanUp(fNewItems, fNewCount, true); in ImportPLItemsCommand()
[all …]
H A DImportPLItemsCommand.h34 int32 fNewCount; variable