HomeSort by relevance Sort by last modified time
    Searched refs:datasource (Results 1 - 15 of 15) sorted by null

  /external/tremolo/Tremolo/
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 in struct:OggVorbis_File
102 extern int ov_open_callbacks(void *datasource, OggVorbis_File *vf,
106 extern int ov_test_callbacks(void *datasource, OggVorbis_File *vf,
vorbisfile.c 93 if(vf->datasource){
95 long bytes=(vf->callbacks.read_func)(buffer,1,CHUNKSIZE,vf->datasource);
105 if(vf->datasource){
106 (vf->callbacks.seek_func)(vf->datasource, offset, SEEK_SET);
512 (vf->callbacks.seek_func)(vf->datasource,0,SEEK_END);
513 vf->offset=vf->end=(vf->callbacks.tell_func)(vf->datasource);
731 vf->datasource=f;
757 vf->datasource=NULL;
770 vf->datasource=NULL;
793 if(vf->datasource)(vf->callbacks.close_func)(vf->datasource)
    [all...]
  /external/libvorbis/include/vorbis/
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 in struct:OggVorbis_File
152 extern int ov_open_callbacks(void *datasource, OggVorbis_File *vf,
156 extern int ov_test_callbacks(void *datasource, OggVorbis_File *vf,
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TestHelper_Driver4.java 77 // The datasource name is the remainder of the url after the ":"
78 String datasource = url.substring(baseURL.length() + 1); local
80 if (datasource.equals(element)) {
82 * Check for user and password, except for datasource =
86 if (datasource.equals("data1")) {
TestHelper_Driver1.java 79 // The datasource name is the remainder of the url after the ":"
80 String datasource = url.substring(baseURL.length() + 1); local
82 if (datasource.equals(element)) {
84 * Check for user and password, except for datasource =
  /external/webkit/Source/WebKit/gtk/webkit/
webkitwebdatasource.cpp 110 WebKitWebDataSource* dataSource = WEBKIT_WEB_DATA_SOURCE(object);
111 WebKitWebDataSourcePrivate* priv = dataSource->priv;
153 WebKitWebDataSource* datasource = webkit_web_data_source_new_with_request(request); local
156 return datasource;
178 WebKitWebDataSource* datasource = kitNew(WebKit::DocumentLoader::create(resourceRequest, SubstituteData())); local
180 WebKitWebDataSourcePrivate* priv = datasource->priv;
183 return datasource;
  /external/chromium/chrome/browser/ui/gtk/tabs/
dragged_tab_gtk.h 26 DraggedTabGtk(TabContents* datasource,
dragged_tab_gtk.cc 49 DraggedTabGtk::DraggedTabGtk(TabContents* datasource,
53 : data_source_(datasource),
55 datasource->profile()))),
62 TabContentsWrapper::GetCurrentWrapperForContents(datasource);
63 renderer_->UpdateData(datasource,
  /frameworks/av/include/media/stagefright/
NuMediaExtractor.h 33 struct DataSource;
53 status_t setDataSource(const sp<DataSource> &datasource);
96 sp<DataSource> mDataSource;
  /external/webkit/Source/WebKit/gtk/tests/
testwebdatasource.c 39 WebKitWebDataSource* dataSource;
50 dataSource = webkit_web_frame_get_provisional_data_source(frame);
51 g_assert(dataSource);
52 initialRequest = webkit_web_data_source_get_initial_request(dataSource);
68 WebKitWebDataSource* datasource = webkit_web_frame_get_data_source(frame);
71 webkit_web_data_source_get_unreachable_uri(datasource));
80 WebKitWebDataSource* dataSource = webkit_web_frame_get_data_source(frame);
83 g_assert(webkit_web_data_source_is_loading(dataSource));
91 WebKitNetworkRequest* request = webkit_web_data_source_get_request(dataSource);
96 WebKitWebResource* resource = webkit_web_data_source_get_main_resource(dataSource);
    [all...]
  /external/libvorbis/lib/
vorbisfile.c 70 if(vf->datasource){
72 long bytes=(vf->callbacks.read_func)(buffer,1,READSIZE,vf->datasource);
82 if(vf->datasource){
84 (vf->callbacks.seek_func)(vf->datasource, offset, SEEK_SET) == -1)
626 (vf->callbacks.seek_func)(vf->datasource,0,SEEK_END);
627 vf->offset=vf->end=(vf->callbacks.tell_func)(vf->datasource);
880 vf->datasource=f;
909 vf->datasource=NULL;
938 vf->datasource=NULL;
970 if(vf->datasource && vf->callbacks.close_func
    [all...]
  /frameworks/base/media/jni/
android_media_MediaExtractor.cpp 32 #include <media/stagefright/DataSource.h>
47 class JavaDataSourceBridge : public DataSource {
145 status_t JMediaExtractor::setDataSource(const sp<DataSource> &datasource) {
146 return mImpl->setDataSource(datasource);
652 DataSource::RegisterDefaultSniffers();
848 { "setDataSource", "(Landroid/media/DataSource;)V",
  /prebuilts/devtools/tools/lib/
jython-2.5.3.jar 
  /prebuilts/misc/common/jython/
jython.jar 
  /prebuilts/tools/common/m2/repository/org/python/jython/2.5.3/
jython-2.5.3.jar 

Completed in 1237 milliseconds