Searched refs:datasource (Results 1 – 8 of 8) sorted by relevance
/external/tremolo/Tremolo/ |
D | ivorbisfile.h | 60 size_t (*read_func) (void *ptr, size_t size, size_t nmemb, void *datasource); 61 int (*seek_func) (void *datasource, ogg_int64_t offset, int whence); 62 int (*close_func) (void *datasource); 63 long (*tell_func) (void *datasource); 67 void *datasource; /* Pointer to a FILE *, etc. */ member 102 extern int ov_open_callbacks(void *datasource, OggVorbis_File *vf, 106 extern int ov_test_callbacks(void *datasource, OggVorbis_File *vf,
|
D | vorbisfile.c | 93 if(vf->datasource){ in _get_data() 95 long bytes=(vf->callbacks.read_func)(buffer,1,CHUNKSIZE,vf->datasource); in _get_data() 105 if(vf->datasource){ in _seek_helper() 106 (vf->callbacks.seek_func)(vf->datasource, offset, SEEK_SET); in _seek_helper() 512 (vf->callbacks.seek_func)(vf->datasource,0,SEEK_END); in _open_seekable2() 513 vf->offset=vf->end=(vf->callbacks.tell_func)(vf->datasource); in _open_seekable2() 731 vf->datasource=f; in _ov_open1() 757 vf->datasource=NULL; in _ov_open1() 770 vf->datasource=NULL; in _ov_open2() 793 if(vf->datasource)(vf->callbacks.close_func)(vf->datasource); in ov_clear()
|
/external/libvorbis/include/vorbis/ |
D | vorbisfile.h | 40 size_t (*read_func) (void *ptr, size_t size, size_t nmemb, void *datasource); 41 int (*seek_func) (void *datasource, ogg_int64_t offset, int whence); 42 int (*close_func) (void *datasource); 43 long (*tell_func) (void *datasource); 112 void *datasource; /* Pointer to a FILE *, etc. */ member 152 extern int ov_open_callbacks(void *datasource, OggVorbis_File *vf, 156 extern int ov_test_callbacks(void *datasource, OggVorbis_File *vf,
|
/external/androidplot/Examples/DemoApp/src/com/androidplot/demos/ |
D | DynamicXYPlotActivity.java | 222 private SampleDynamicXYDatasource datasource; field in DynamicXYPlotActivity.SampleDynamicSeries 226 … public SampleDynamicSeries(SampleDynamicXYDatasource datasource, int seriesIndex, String title) { in SampleDynamicSeries() argument 227 this.datasource = datasource; in SampleDynamicSeries() 239 return datasource.getItemCount(seriesIndex); in size() 244 return datasource.getX(seriesIndex, index); in getX() 249 return datasource.getY(seriesIndex, index); in getY()
|
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/ |
D | TestHelper_Driver4.java | 78 String datasource = url.substring(baseURL.length() + 1); in connect() local 80 if (datasource.equals(element)) { in connect() 86 if (datasource.equals("data1")) { in connect()
|
D | TestHelper_Driver1.java | 80 String datasource = url.substring(baseURL.length() + 1); in connect() local 82 if (datasource.equals(element)) { in connect()
|
/external/autotest/client/tests/iozone/ |
D | postprocessing.py | 366 self.datasource = os.path.join(self.output_dir, '3d-datasource') 367 datasource = open(self.datasource, 'w') 374 datasource.write(line) 377 datasource.close() 437 (self.datasource, index, label))
|
/external/libvorbis/lib/ |
D | vorbisfile.c | 70 if(vf->datasource){ in _get_data() 72 long bytes=(vf->callbacks.read_func)(buffer,1,READSIZE,vf->datasource); in _get_data() 82 if(vf->datasource){ in _seek_helper() 84 (vf->callbacks.seek_func)(vf->datasource, offset, SEEK_SET) == -1) in _seek_helper() 626 (vf->callbacks.seek_func)(vf->datasource,0,SEEK_END); in _open_seekable2() 627 vf->offset=vf->end=(vf->callbacks.tell_func)(vf->datasource); in _open_seekable2() 880 vf->datasource=f; in _ov_open1() 909 vf->datasource=NULL; in _ov_open1() 938 vf->datasource=NULL; in _ov_open2() 970 if(vf->datasource && vf->callbacks.close_func) in ov_clear() [all …]
|