Searched refs:numf (Results 1 - 7 of 7) sorted by relevance

/hardware/bsp/intel/peripheral/libupm/examples/c++/
H A Dwt5001.cxx105 uint16_t numf = 0; local
106 if (mp3->getNumFiles(upm::WT5001::SD, &numf))
107 cout << "The number of files on the SD card is: " << int(numf) << endl;
/hardware/bsp/intel/peripheral/libupm/examples/java/
H A DWT5001Sample.java98 int numf[] = new int[1];
99 if (mp3.getNumFiles(upm_wt5001.WT5001.WT5001_PLAYSOURCE_T.SD, numf))
100 System.out.println("The number of files on the SD card is: " + numf[0]);
/hardware/bsp/intel/peripheral/libupm/examples/javascript/
H A Dwt5001.js93 var numf = new MP3Player.uint16Array(0);
94 myMP3Player.getNumFiles(MP3Player.WT5001.SD, numf);
95 console.log("The number of files on the SD card is: " + numf.getitem(0));
/hardware/bsp/intel/peripheral/libupm/examples/python/
H A Dwt5001.py74 numf = upmWt5001.uint16Array(0) variable
75 myMP3Player.getNumFiles(upmWt5001.WT5001.SD, numf)
76 print "The number of files on the SD card is: " + str(numf.__getitem__(0))
/hardware/bsp/intel/peripheral/libupm/src/wt5001/
H A Djavaupm_wt5001.i9 %apply uint16_t *OUTPUT { uint16_t *numf };
H A Dwt5001.h307 * @param numf Number of files
310 bool getNumFiles(WT5001_PLAYSOURCE_T psrc, uint16_t *numf);
H A Dwt5001.cxx476 bool WT5001::getNumFiles(WT5001_PLAYSOURCE_T psrc, uint16_t *numf) argument
513 *numf = (buf[0] << 8) | buf[1];

Completed in 76 milliseconds