Home | History | Annotate | Download | only in media

Lines Matching full:calls

64  * - The Java MediaScannerService creates a MediaScanner (this class), and calls
66 * - scanDirectories() calls the native processDirectory() for each of the specified directories.
68 * 'MyMediaScannerClient' class, then calls processDirectory() on the native MediaScanner
70 * - native MediaScanner.processDirectory() (currently part of opencore) calls
71 * doProcessDirectory(), which recurses over the folder, and calls
73 * - native MyMediaScannerClient.scanFile() calls back on Java MediaScannerClient.scanFile,
74 * which calls doScanFile, which after some setup calls back down to native code, calling
76 * - MediaScanner.processFile() calls one of several methods, depending on the type of the
79 * calls native MyMediaScannerClient.handleStringTag, which calls back up to its Java
82 * - once processFile returns and we're back in Java code in doScanFile(), it calls
87 * Java MediaScannerService calls
88 * Java MediaScanner scanDirectories, which calls
89 * Java MediaScanner processDirectory (native method), which calls
90 * native MediaScanner processDirectory, which calls
91 * native MyMediaScannerClient scanFile, which calls
92 * Java MyMediaScannerClient scanFile, which calls
93 * Java MediaScannerClient doScanFile, which calls
94 * Java MediaScanner processFile (native method), which calls
95 * native MediaScanner processFile, which calls
96 * native parseMP3, parseMP4, parseMidi, parseOgg or parseWMA, which calls
97 * native MyMediaScanner handleStringTag, which calls