HomeSort by relevance Sort by last modified time
    Searched defs:fetch (Results 1 - 25 of 28) sorted by null

1 2

  /external/webkit/Tools/Scripts/webkitpy/common/system/
urlfetcher.py 35 """Class with restricted interface to fetch URLs (makes testing easier)"""
39 def fetch(self, url): member in class:UrlFetcher
52 contents = self.fetch(url)
urlfetcher_mock.py 37 def fetch(self, url): member in class:make_fetcher_cls.MockFetcher
42 f.write(self.fetch(url))
  /external/ppp/pppd/plugins/pppoatm/
text2qos.c 19 #define fetch __atmlib_fetch macro
89 switch (fetch(text,"max_pcr=","pcr=","min_pcr=","max_sdu=","sdu=",
135 item = fetch(&text,"!none","ubr","cbr","vbr","abr","aal0","aal5",NULL);
160 switch (fetch(&text,"tx","rx",NULL)) {
162 if (!fetch(&text,":none",NULL)) {
176 if (fetch(&text,"rx",NULL)) return -1;
177 if (!fetch(&text,":none",NULL) && qos) qos->rxtp.traffic_class = ATM_NONE;
  /external/oprofile/daemon/
opd_ibs.h 32 struct ibs_fetch_sample * fetch; member in struct:ibs_sample
37 * This struct represents the hardware-level IBS fetch information.
44 /* MSRC001_1030 IBS Fetch Control Register */
47 /* MSRC001_1031 IBS Fetch Linear Address Register */
50 /* MSRC001_1032 IBS Fetch Physical Address Register */
85 * Handle an IBS fetch sample escape code sequence. An IBS fetch sample
90 * entries are needed in order to process a complete IBS fetch sample.
98 * IBS fetch IBS op
  /packages/apps/Email/tests/src/com/android/emailcommon/mail/
MockFolder.java 62 public void fetch(Message[] messages, FetchProfile fp, MessageRetrievalListener listener) { method in class:MockFolder
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
template.rb 39 templates = @templates || options.fetch( :templates ) do
53 @templates.fetch( name, values )
95 namespace = options.fetch( :namespace, ::Object )
108 namespace = options.fetch( :namespace, ::Object )
131 def fetch( name, values = {} ) method in class:ANTLR3.Template
132 self::TEMPLATES.fetch( name.to_s ).new( values )
156 context = self::TEMPLATES.fetch( old_name.to_s ) do
317 param.splat = options.fetch( :splat, false )
318 param.block = options.fetch( :block, false )
  /external/smack/src/org/jivesoftware/smackx/packet/
OfflineMessageRequest.java 42 private boolean fetch = false; field in class:OfflineMessageRequest
92 return fetch;
98 * @param fetch true if all the offline messages of the user should be retrieved.
100 public void setFetch(boolean fetch) {
101 this.fetch = fetch;
116 if (fetch) {
117 buf.append("<fetch/>");
208 else if (parser.getName().equals("fetch")) {
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
BufferedTokenStream.java 127 if ( n > 0 ) fetch(n);
131 protected void fetch(int n) { method in class:BufferedTokenStream
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/mail/
Folder.java 116 * each fetch completes. Messages are downloaded as (as) lightweight (as
157 public abstract void fetch(Message[] messages, FetchProfile fp, method in class:Folder
  /external/chromium/chrome/browser/sync/syncable/
directory_backing_store.cc 914 SQLStatement fetch; local
915 fetch.prepare(load_dbhandle_,
918 if (SQLITE_ROW != fetch.step())
920 int64 last_sync_timestamp = fetch.column_int64(0);
921 bool initial_sync_ended = fetch.column_bool(1);
922 if (SQLITE_DONE != fetch.step())
    [all...]
  /external/skia/src/effects/
SkMatrixConvolutionImageFilter.cpp 75 static inline SkPMColor fetch(const SkBitmap& src, int x, int y) { function in class:UncheckedPixelFetcher
82 static inline SkPMColor fetch(const SkBitmap& src, int x, int y) { function in class:ClampPixelFetcher
91 static inline SkPMColor fetch(const SkBitmap& src, int x, int y) { function in class:RepeatPixelFetcher
106 static inline SkPMColor fetch(const SkBitmap& src, int x, int y) { function in class:ClampToBlackPixelFetcher
123 SkPMColor s = PixelFetcher::fetch(src, x + cx - fTarget.fX, y + cy - fTarget.fY);
140 a = SkGetPackedA32(PixelFetcher::fetch(src, x, y));
  /external/chromium/chrome/browser/extensions/
extension_updater.cc 341 ManifestFetchData* fetch = NULL; local
354 fetch = existing_iter->second;
359 if (!fetch) {
360 fetch = new ManifestFetchData(update_url);
361 fetches_.insert(std::pair<GURL, ManifestFetchData*>(update_url, fetch));
362 bool added = fetch->AddExtension(id, version.GetString(), ping_data,
711 // available, we want to fire off requests to fetch those updates.
720 VLOG(1) << "Failed to fetch manifest '" << url.possibly_invalid_spec()
741 // below if they actually have updates we need to fetch and install).
838 VLOG(1) << "Failed to fetch extension '" << url.possibly_invalid_spec(
    [all...]
  /packages/apps/Email/src/com/android/email/mail/store/
Pop3Store.java 635 * Fetch the items contained in the FetchProfile into the given set of
642 public void fetch(Message[] messages, FetchProfile fp, MessageRetrievalListener listener) method in class:Pop3Store.Pop3Folder
663 throw new MessagingException("fetch", ioe);
668 throw new MessagingException("Pop3Store.fetch called with non-Pop3 Message");
698 throw new MessagingException("Unable to fetch message", ioe);
723 "Pop3Store.fetch called with non-Pop3 Message");
789 // Fetch entire message
792 // Fetch partial message. Try "TOP", and fall back to slower "RETR" if necessary
    [all...]
ImapFolder.java 512 public void fetch(Message[] messages, FetchProfile fp, MessageRetrievalListener listener) method in class:ImapFolder
538 * FLAGS - UID FETCH (FLAGS)
539 * ENVELOPE - UID FETCH (INTERNALDATE UID RFC822.SIZE FLAGS BODY.PEEK[
541 * STRUCTURE - UID FETCH (BODYSTRUCTURE)
542 * BODY_SANE - UID FETCH (BODY.PEEK[]<0.N>) where N = max bytes returned
543 * BODY - UID FETCH (BODY.PEEK[])
544 * Part - UID FETCH (BODY.PEEK[ID]) where ID = mime part ID
591 if (!response.isDataResponse(1, ImapConstants.FETCH)) {
800 * This will be caught by fetch and handled appropriately.
    [all...]
  /packages/apps/Email/tests/src/com/android/email/mail/store/
Pop3StoreUnitTests.java 518 * Pop3Folder.fetch(), for a failure in the call to indexUids().
536 // try the basic fetch of flags & envelope
541 mFolder.fetch(messages, fp, null);
543 fail("Broken stream should cause fetch() to throw.");
569 * Pop3Folder.fetch(), for a failure in the call to fetchEnvelope().
583 // try the basic fetch of flags & envelope, but the LIST command fails
589 mFolder.fetch(messages, fp, null);
591 fail("Broken stream should cause fetch() to throw.");
617 * Pop3Folder.fetch().
631 // try the basic fetch of flags & envelop
    [all...]
ImapStoreUnitTests.java 773 " UID FETCH 1 \\(UID FLAGS INTERNALDATE RFC822\\.SIZE BODY\\.PEEK\\[HEADER.FIELDS" +
776 "* 9 fETCH (uID 1 rFC822.sIZE 120626 iNTERNALDATE \"17-may-2010 22:00:15 +0000\"" +
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/thirdparty/
BeautifulSoup.py 793 fetch = findAll variable in class:Tag
    [all...]
  /frameworks/base/tests/CoreTests/android/core/
SSLSocketTest.java 78 private void fetch(SSLSocketFactory socketFactory, String host, int port, method in class:SSLSocketTest
178 * Invokes fetch() with the default socket factory.
180 private void fetch(String host, int port, boolean secure, String path, method in class:SSLSocketTest
183 fetch(clientFactory, host, port, secure, path, outerLoop, innerLoop, method
193 fetch("www.fortify.net", 443, true, "/sslcheck.html", 1, 1, 0, 60);
194 fetch("mail.google.com", 443, true, "/mail/", 1, 1, 0, 60);
195 fetch("www.paypal.com", 443, true, "/", 1, 1, 0, 60);
196 fetch("www.yellownet.ch", 443, true, "/", 1, 1, 0, 60);
206 fetch("www.fortify.net", 443, true, "/sslcheck.html", 10, 1, 0, 60);
207 fetch("mail.google.com", 443, true, "/mail/", 10, 1, 0, 60)
971 fetch(socketFactory, "www.fortify.net", 443, true, "\/sslcheck.html", method
973 fetch(socketFactory, "www.paypal.com", 443, true, "\/", method
975 fetch(socketFactory, "www.yellownet.ch", 443, true, "\/", method
    [all...]
  /frameworks/native/opengl/libagl/
context.h 179 fetcher_t fetch; member in struct:android::gl::array_t
  /packages/apps/Email/src/com/android/email/
MessagingController.java 471 remoteFolder.fetch(smallMessages.toArray(new Message[smallMessages.size()]), fp,
488 remoteFolder.fetch(largeMessages.toArray(new Message[largeMessages.size()]), fp, null);
497 // the proper size after this fetch and compare the before and after size. If
499 remoteFolder.fetch(new Message[] { message }, fp, null);
518 remoteFolder.fetch(new Message[] { message }, fp, null);
543 remoteFolder.fetch(unsyncedMessages.toArray(new Message[0]), fp,
677 remoteFolder.fetch(messageList.toArray(new Message[0]), fp,
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/
pdebuild.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.engine_2.0.0.v20100606.jar 
  /prebuilts/devtools/tools/lib/
sdklib.jar 
jython-2.5.3.jar 
  /prebuilts/misc/common/jython/
jython.jar 

Completed in 4934 milliseconds

1 2