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

/hardware/bsp/intel/peripheral/libupm/examples/c++/
H A Dwt5001.cxx109 uint16_t curf = 0; local
110 if (mp3->getCurrentFile(&curf))
111 cout << "The current file is: " << int(curf) << endl;
/hardware/bsp/intel/peripheral/libupm/examples/java/
H A DWT5001Sample.java102 int curf[] = new int[1];
103 if (mp3.getCurrentFile(curf))
104 System.out.println("The current file is: " + curf[0]);
/hardware/bsp/intel/peripheral/libupm/examples/javascript/
H A Dwt5001.js97 var curf = new MP3Player.uint16Array(0);
98 myMP3Player.getCurrentFile(curf);
99 console.log("The current file is: " + curf.getitem(0));
/hardware/bsp/intel/peripheral/libupm/examples/python/
H A Dwt5001.py78 curf = upmWt5001.uint16Array(0) variable
79 myMP3Player.getCurrentFile(curf)
80 print "The current file is: " + str(curf.__getitem__(0))
/hardware/bsp/intel/peripheral/libupm/src/wt5001/
H A Djavaupm_wt5001.i10 %apply uint16_t *OUTPUT { uint16_t *curf };
H A Dwt5001.h315 * @param curf Index of the current file
318 bool getCurrentFile(uint16_t *curf);
H A Dwt5001.cxx518 bool WT5001::getCurrentFile(uint16_t *curf) argument
539 *curf = (buf[0] << 8) | (buf[1] & 0xff);

Completed in 6198 milliseconds