HomeSort by relevance Sort by last modified time
    Searched defs:fetch (Results 76 - 100 of 181) sorted by null

1 2 34 5 6 7 8

  /external/autotest/site_utils/rpm_control_system/
BeautifulSoup.py 854 fetch = findAll variable in class:Tag
    [all...]
  /external/libpcap/
pcap-usb-linux.c 100 int32_t nfetch; /* Number of events to fetch (out: fetched) */
884 struct mon_bin_mfetch fetch; local
902 /* try to fetch as many events as possible*/
903 fetch.offvec = vec;
904 fetch.nfetch = limit;
905 fetch.nflush = nflush;
908 ret = ioctl(handle->fd, MON_IOCX_MFETCH, &fetch);
926 nflush = fetch.nfetch;
927 for (i=0; i<fetch.nfetch; ++i) {
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_private.h 276 struct translate *fetch; member in struct:draw_context::__anon29388
  /external/python/cpython3/Lib/
imaplib.py 72 'FETCH': ('SELECTED',),
429 Fetch capabilities list from server."""
515 def fetch(self, message_set, message_parts): member in class:IMAP4
516 """Fetch (parts of) messages.
518 (typ, [data, ...]) = <instance>.fetch(message_set, message_parts)
525 name = 'FETCH'
669 """Fetch truncated part of a message.
677 return self._untagged_response(typ, dat, 'FETCH')
833 return self._untagged_response(typ, dat, 'FETCH')
875 name = 'FETCH'
    [all...]
  /external/skqp/tests/
SkpSkGrTest.cpp 492 while (fetch(reader, &fResults.push_back()))
497 bool fetch(SkFILEStream& reader, TestResult* result) { function in class:PreParser
  /external/tensorflow/tensorflow/core/grappler/optimizers/
constant_folding_test.cc 43 item.fetch.push_back("d");
57 std::vector<string> fetch = {"d"}; local
58 auto tensors_expected = EvaluateNodes(item.graph, fetch);
59 auto tensors = EvaluateNodes(output, fetch);
89 item.fetch = {"add_parent", "mul_parent", "addmul_parent"};
143 std::vector<string> fetch = {"c3", "c20"}; local
144 auto tensor_expected = EvaluateNodes(item.graph, fetch);
145 EXPECT_EQ(fetch.size(), tensor_expected.size());
146 fetch = {"add_child", "mul_child"};
147 auto tensors = EvaluateNodes(output, fetch);
364 std::vector<string> fetch = {"cf_half"}; local
577 std::vector<string> fetch = {"e", "f"}; local
1167 std::vector<string> fetch = {"out1", "idx1"}; local
    [all...]
  /external/tensorflow/tensorflow/examples/android/src/org/tensorflow/demo/
StylizeActivity.java 541 inferenceInterface.fetch(OUTPUT_NODE, floatValues);
  /external/wpa_supplicant_8/hs20/server/
spp_server.c 1748 char *fetch; local
    [all...]
  /packages/apps/Dialer/java/com/android/voicemail/impl/imap/
ImapHelper.java 35 import com.android.voicemail.impl.fetch.VoicemailFetchedCallback;
201 * Fetch a list of voicemails from the server.
235 * Extract voicemail details from the message structure. Also fetch transcription if a
247 folder.fetch(new Message[] {messageDetails}, fetchProfile, listener);
307 // The IMAP folder fetch method will call "messageRetrieved" on the listener when the
309 folder.fetch(new Message[] {message}, fetchProfile, listener);
347 folder.fetch(new Message[] {message}, fetchProfile, listener);
373 folder.fetch(new Message[] {message}, fetchProfile, listener);
595 /** Returns the fetch voicemail payload. */
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/store/
ImapFolder.java 233 public void fetch(Message[] messages, FetchProfile fp, MessageRetrievalListener listener) method in class:ImapFolder
256 * FLAGS - UID FETCH (FLAGS)
257 * ENVELOPE - UID FETCH (INTERNALDATE UID RFC822.SIZE FLAGS BODY.PEEK[
259 * STRUCTURE - UID FETCH (BODYSTRUCTURE)
260 * BODY_SANE - UID FETCH (BODY.PEEK[]<0.N>) where N = max bytes returned
261 * BODY - UID FETCH (BODY.PEEK[])
262 * Part - UID FETCH (BODY.PEEK[ID]) where ID = mime part ID
291 // TODO Why can a single part have more than one Id? And why should we only fetch
312 if (!response.isDataResponse(1, ImapConstants.FETCH)) {
547 * This will be caught by fetch and handled appropriately
    [all...]
  /packages/apps/Email/provider_src/com/android/email/mail/store/
Pop3Store.java 534 * Fetch the items contained in the FetchProfile into the given set of
541 public void fetch(Message[] messages, FetchProfile fp, MessageRetrievalListener listener) method in class:Pop3Store.Pop3Folder
544 "Pop3Folder.fetch(Message[], FetchProfile, MessageRetrievalListener)");
556 * @param callback optional callback that reports progress of the fetch
563 // Fetch entire message
566 // Fetch partial message. Try "TOP", and fall back to slower "RETR" if necessary
ImapFolder.java 608 public void fetch(Message[] messages, FetchProfile fp, MessageRetrievalListener listener) method in class:ImapFolder
634 * FLAGS - UID FETCH (FLAGS)
635 * ENVELOPE - UID FETCH (INTERNALDATE UID RFC822.SIZE FLAGS BODY.PEEK[
637 * STRUCTURE - UID FETCH (BODYSTRUCTURE)
638 * BODY_SANE - UID FETCH (BODY.PEEK[]<0.N>) where N = max bytes returned
639 * BODY - UID FETCH (BODY.PEEK[])
640 * Part - UID FETCH (BODY.PEEK[ID]) where ID = mime part ID
670 // TODO Why can a single part have more than one Id? And why should we only fetch
689 if (!response.isDataResponse(1, ImapConstants.FETCH)) {
    [all...]
  /packages/apps/Email/provider_src/com/android/email/service/
EmailServiceStub.java 219 remoteFolder.fetch(new Message[] { storeMessage }, fp,
ImapService.java 80 // The maximum number of messages to fetch in a single command.
260 remoteFolder.fetch(messages.toArray(new Message[messages.size()]), fp, null);
273 remoteFolder.fetch(oneMessageArray, fp, null);
296 remoteFolder.fetch(unsyncedMessages.toArray(new Message[unsyncedMessages.size()]), fp,
616 * Fetch the flags and envelope only of the new messages. This is intended to get us
627 // TODO: the fetch() function, and others, should take List<>s of messages, not
640 // Fetch this one chunk of messages
641 remoteFolder.fetch(partialArray, fp, null);
644 remoteFolder.fetch(remoteMessages, fp, null);
    [all...]
  /packages/apps/Email/tests/src/com/android/email/mail/store/
Pop3StoreUnitTests.java 514 * Pop3Folder.fetch(), for a failure in the call to indexUids().
532 // try the basic fetch of flags & envelope
537 mFolder.fetch(messages, fp, null);
539 fail("Broken stream should cause fetch() to throw.");
565 * Pop3Folder.fetch(), for a failure in the call to fetchEnvelope().
579 // try the basic fetch of flags & envelope, but the LIST command fails
585 mFolder.fetch(messages, fp, null);
587 fail("Broken stream should cause fetch() to throw.");
613 * Pop3Folder.fetch().
627 // try the basic fetch of flags & envelop
    [all...]
ImapStoreUnitTests.java 775 " UID FETCH 1 \\(UID FLAGS INTERNALDATE RFC822\\.SIZE BODY\\.PEEK\\[HEADER.FIELDS" +
778 "* 9 fETCH (uID 1 rFC822.sIZE 120626 iNTERNALDATE \"17-may-2010 22:00:15 +0000\"" +
    [all...]
  /external/guice/extensions/persist/lib/
ejb3-persistence.jar 
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
fetch_jit.cpp 25 * @brief Implementation of the fetch jitter
53 /// Interface to Jitting a fetch shader
97 Function* fetch = Function::Create(JM()->mFetchShaderTy, GlobalValue::ExternalLinkage, fnName.str(), JM()->mpCurrentModule); local
98 BasicBlock* entry = BasicBlock::Create(JM()->mContext, "entry", fetch);
102 auto argitr = fetch->arg_begin();
104 // Fetch shader arguments
185 // Fetch attributes from memory and output to a simdvertex struct
186 // since VGATHER has a perf penalty on HSW vs BDW, allow client to choose which fetch method to use
192 JitManager::DumpToFile(fetch, "src");
195 verifyFunction(*fetch);
    [all...]
  /external/tensorflow/tensorflow/core/distributed_runtime/
master_session.cc 227 // Maps rendezvous keys to fetch names. Empty most of the time.
635 status.Update(errors::Internal("Unexpected fetch key: ",
639 const string& fetch = iter->second; local
641 resp->AddTensorFromRunGraphResponse(fetch, run_graph_resp, j));
829 // TODO(suharsh,mrry): Build a map from fetch target to set of feeds it depends
854 // Initialize the stack with the fetch nodes.
857 const string& fetch = req.fetch_name(i); local
858 const TensorId id(ParseTensorName(fetch));
861 return errors::NotFound("Fetch ", fetch, ": not found")
1492 const string& fetch = req.fetch_name(i); local
    [all...]
  /external/toybox/toys/posix/
ps.c 662 long long bits; // Only fetch extra data if an -o field is displaying it
663 } fetch[] = { local
759 // systems (or ps | more) we re-fetch uptime as we fetch each /proc line.
791 // Fetch string data while parentfd still available, appending to buf.
796 for (j = 0; j<ARRAY_LEN(fetch); j++) {
798 if (!(TT.bits&fetch[j].bits)) {
805 len = sizeof(toybuf)-(buf-toybuf)-260-256*(ARRAY_LEN(fetch)-j);
806 sprintf(buf, "%lld/%s", slot[SLOT_tid], fetch[j].name);
    [all...]
  /cts/tests/tests/accounts/src/android/accounts/cts/
AccountManagerTest.java 186 public Bundle fetch(String tokenType) method in interface:AccountManagerTest.TokenFetcher
198 // First fetch.
199 Bundle actual = fetcher.fetch(tokenType);
204 * On the second fetch the cache will be populated if we are using a authenticator with
208 actual = fetcher.fetch(tokenType);
226 actual = fetcher.fetch(tokenType);
238 actual = fetcher.fetch(tokenType);
1202 public Bundle fetch(String tokenType) method in class:AccountManagerTest.BlockingGetAuthTokenFetcher
    [all...]
  /frameworks/native/opengl/libagl/
context.h 184 fetcher_t fetch; member in struct:android::gl::array_t
  /external/mesa3d/src/gallium/drivers/r600/sb/
sb_bc.h 595 unsigned fetch; member in struct:r600_sb::shader_stats
601 fetch_clauses(), fetch(), alu_groups(), shaders() {}
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/Include/
intermediate.h 1028 bool fetch; member in struct:glslang::TCrackedTextureOp
1075 cracked.fetch = false;
    [all...]
  /prebuilts/tools/common/m2/repository/com/squareup/picasso/picasso/2.5.2/
picasso-2.5.2.jar 

Completed in 1560 milliseconds

1 2 34 5 6 7 8