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

1 2 3 4 5

  /external/e2fsprogs/tests/progs/test_data/
test.icount 12 fetch 0
16 fetch 20001
21 # OK, now let's test fetch and store. We also test the boundary cases
24 fetch 1
26 fetch 1
28 fetch 1
30 fetch 1
32 fetch 1
34 fetch 1
35 fetch 2000
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/common/system/
urlfetcher_mock.py 37 def fetch(self, url): member in class:make_fetcher_cls.MockFetcher
42 f.write(self.fetch(url))
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)
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
interactive.rb 9 uses Readline (if available) or standard IO#gets to fetch data on demand.
27 @position = options.fetch :position, 0
28 @line = options.fetch :line, 1
29 @column = options.fetch :column, 0
63 @position = options.fetch :position, 0
64 @line = options.fetch :line, 1
65 @column = options.fetch :column, 0
  /external/e2fsprogs/tests/progs/
test_icount_cmds.ct 16 request do_fetch, "Fetch an icount entry",
17 fetch;
  /external/webkit/Tools/EWSTools/
start-queue.sh 48 git fetch
  /external/webkit/Tools/QueueStatusServer/handlers/
patchstatus.py 36 statuses = QueueStatus.all().filter('queue_name =', queue_name).filter('active_patch_id =', int(attachment_id)).order('-date').fetch(1)
svnrevision.py 36 svn_revisions = model.SVNRevision.all().filter('number =', int(svn_revision_number)).order('-date').fetch(1)
updatesvnrevision.py 43 svn_revisions = model.SVNRevision.all().filter('number =', svn_revision_number).order('-date').fetch(1)
  /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;
  /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...]
  /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/valgrind/main/coregrind/m_gdbserver/
regcache.c 46 int fetch)
55 /* FIXME - fetch registers for INF */
56 if (fetch && regcache->registers_valid == 0) {
203 unsigned char *register_data (int n, int fetch)
206 = get_regcache (current_inferior, fetch)->registers;
211 unsigned char *register_data_for_supply (int n, int fetch, Bool *mod)
214 = get_regcache (current_inferior, fetch);
  /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
  /dalvik/vm/mterp/x86/
zcmp.S 15 movswl 2(rPC),%eax # fetch signed displacement
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
parameter.rb 40 param.splat = options.fetch( :splat, false )
41 param.block = options.fetch( :block, false )
  /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 )
main.rb 69 @no_output = options.fetch( :no_output, false )
70 @profile = options.fetch( :profile, false )
71 @debug_socket = options.fetch( :debug_socket, false )
72 @ruby_prof = options.fetch( :ruby_prof, false )
73 @encoding = options.fetch( :encoding, nil )
74 @interactive = options.fetch( :interactive, false )
75 @input = options.fetch( :input, $stdin )
125 @input = options.fetch( :input, $stdin )
126 @output = options.fetch( :output, $stdout )
127 @error = options.fetch( :error, $stderr
    [all...]
  /dalvik/vm/mterp/armv5te/
OP_MONITOR_EXIT.S 13 EXPORT_PC() @ before fetch: export the PC
  /dalvik/vm/mterp/mips/
OP_MONITOR_EXIT.S 13 EXPORT_PC() # before fetch: export the PC
  /external/skia/tools/
rebaseline.py 65 print 'Couldn\'t fetch ' + url
  /external/webkit/Tools/MiniBrowser/mac/
BrowserWindowController.h 41 - (IBAction)fetch:(id)sender;
  /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/test/
grammar.rb 69 @output_directory = options.fetch( :output_directory, '.' )
70 @verbose = options.fetch( :verbose, $VERBOSE )
248 jar_path = options.fetch( :antlr_jar, default_antlr_jar )
276 @output_directory = options.fetch( :output_directory, File.dirname( @host_file ) )
277 @verbose = options.fetch( :verbose, $VERBOSE )
  /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...]

Completed in 528 milliseconds

1 2 3 4 5