HomeSort by relevance Sort by last modified time
    Searched refs:datasource (Results 1 - 9 of 9) 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/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,
  /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...]
  /prebuilt/common/jython/
jython.jar 

Completed in 3201 milliseconds