HomeSort by relevance Sort by last modified time
    Searched refs:Progress (Results 26 - 50 of 72) sorted by null

12 3

  /external/chromium-trace/catapult/third_party/gsutil/gslib/
gcs_json_media.py 63 This is used to provide progress callbacks and disable dumping the upload
88 # us to update our progress once based on that number.
105 self.callback_processor.Progress(
129 self.callback_processor.Progress(send_length)
162 This is used to provide progress callbacks, disable dumping the download
236 self.callback_processor.Progress(
242 self.callback_processor.Progress(read_length)
hashing_helper.py 191 Progress(integer amount of bytes processed).
200 callback_processor.Progress(len(data))
gcs_json_api.py 645 # TODO: Change DownloadCallbackConnectionClassFactory and progress callbacks
721 # We've made progress, so allow a fresh set of retries.
    [all...]
copy_helper.py     [all...]
  /external/lzma/C/
7zTypes.h 224 SRes (*Progress)(void *p, UInt64 inSize, UInt64 outSize);
Lzma2Enc.c 252 static SRes Progress(ICompressProgress *p, UInt64 inSize, UInt64 outSize)
254 return (p && p->Progress(p, inSize, outSize) != SZ_OK) ? SZ_ERROR_PROGRESS : SZ_OK;
281 ISeqOutStream *outStream, ISeqInStream *inStream, ICompressProgress *progress)
302 res = Progress(progress, p->srcPos, packTotal);
451 ISeqOutStream *outStream, ISeqInStream *inStream, ICompressProgress *progress)
470 return Lzma2Enc_EncodeMt1(&p->coders[0], p, outStream, inStream, progress);
480 p->mtCoder.progress = progress;
XzIn.c 274 SRes Xzs_ReadBackward(CXzs *p, ILookInStream *stream, Int64 *startOffset, ICompressProgress *progress, ISzAlloc *alloc)
303 if (progress && progress->Progress(progress, endOffset - *startOffset, (UInt64)(Int64)-1) != SZ_OK)
LzmaEnc.c     [all...]
  /external/zlib/src/contrib/delphi/
ZLib.pas 53 procedure Progress(Sender: TObject); dynamic;
78 written to the output stream. This is useful for updating a progress
113 This is useful for updating a progress indicator when you are reading a
398 procedure TCustomZLibStream.Progress(Sender: TObject);
458 Progress(Self);
515 Progress(Self);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
virtdisk.h 330 PVIRTUAL_DISK_PROGRESS Progress
mobsync.h 253 virtual HRESULT WINAPI Progress(REFSYNCMGRITEMID pItemID,LPSYNCMGRPROGRESSITEM lpSyncProgressItem) = 0;
269 HRESULT (WINAPI *Progress)(ISyncMgrSynchronizeCallback *This,REFSYNCMGRITEMID pItemID,LPSYNCMGRPROGRESSITEM lpSyncProgressItem);
287 #define ISyncMgrSynchronizeCallback_Progress(This,pItemID,lpSyncProgressItem) (This)->lpVtbl->Progress(This,pItemID,lpSyncProgressItem)
mapidefs.h 583 #define MAPI_IMAPIPROGRESS_METHODS(IPURE) MAPIMETHOD(Progress) (THIS_ ULONG ulValue,ULONG ulCount,ULONG ulTotal) IPURE; MAPIMETHOD(GetFlags) (THIS_ ULONG *lpulFlags) IPURE; MAPIMETHOD(GetMax) (THIS_ ULONG *lpulMax) IPURE; MAPIMETHOD(GetMin) (THIS_ ULONG *lpulMin) IPURE; MAPIMETHOD(SetLimits) (THIS_ LPULONG lpulMin,LPULONG lpulMax,LPULONG lpulFlags) IPURE;
    [all...]
wabdefs.h 582 #define MAPI_IMAPIPROGRESS_METHODS(IPURE) MAPIMETHOD(Progress) (THIS_ ULONG ulValue,ULONG ulCount,ULONG ulTotal) IPURE; MAPIMETHOD(GetFlags) (THIS_ ULONG *lpulFlags) IPURE; MAPIMETHOD(GetMax) (THIS_ ULONG *lpulMax) IPURE; MAPIMETHOD(GetMin) (THIS_ ULONG *lpulMin) IPURE; MAPIMETHOD(SetLimits) (THIS_ LPULONG lpulMin,LPULONG lpulMax,LPULONG lpulFlags) IPURE;
    [all...]
adoint.h     [all...]
  /external/chromium-trace/catapult/third_party/mocha/
mocha.js 639 require.register("browser/progress.js", function(module, exports, require){
641 * Expose `Progress`.
644 module.exports = Progress;
647 * Initialize a new `Progress` indicator.
650 function Progress() {
658 * Set progress size to `n`.
661 * @return {Progress} for chaining
665 Progress.prototype.size = function(n){
674 * @return {Progress} for chaining
678 Progress.prototype.text = function(str)
    [all...]
  /external/chromium-trace/catapult/tracing/third_party/mocha/
mocha.js 639 require.register("browser/progress.js", function(module, exports, require){
641 * Expose `Progress`.
644 module.exports = Progress;
647 * Initialize a new `Progress` indicator.
650 function Progress() {
658 * Set progress size to `n`.
661 * @return {Progress} for chaining
665 Progress.prototype.size = function(n){
674 * @return {Progress} for chaining
678 Progress.prototype.text = function(str)
    [all...]
  /external/ImageMagick/www/api/
monitor.php 9 <title>ImageMagick: MagickCore, C API for ImageMagick: Monitor the Progress of an Image Operation</title>
15 <meta name="keywords" content="magickcore, c, api, for, imagemagick:, monitor, the, progress, of, an, image, operation, ImageMagick, PerlMagick, image processing, image, photo, software, Magick++, OpenMP, convert"/>
59 <p>SetImageProgressMonitor() sets the image progress monitor to the specified method and returns the previous progress monitor if any. The progress monitor method looks like this:</p>
67 <p>If the progress monitor returns MagickFalse, the current operation is interrupted.</p>
88 <dd>Specifies a pointer to a method to monitor progress of an image operation. </dd>
98 <p>SetImageInfoProgressMonitor() sets the image_info progress monitor to the specified method and returns the previous progress monitor if any. The progress monitor method looks like this:</p
    [all...]
  /external/curl/lib/
getinfo.c 32 #include "progress.h"
44 struct Progress *pro = &data->progress;
230 *param_doublep = data->progress.timespent;
233 *param_doublep = data->progress.t_nslookup;
236 *param_doublep = data->progress.t_connect;
239 *param_doublep = data->progress.t_appconnect;
242 *param_doublep = data->progress.t_pretransfer;
245 *param_doublep = data->progress.t_starttransfer;
248 *param_doublep = (double)data->progress.uploaded
    [all...]
urldata.h 1741 struct Progress progress; \/* for all the progress meter data *\/ member in struct:Curl_easy
    [all...]
easy.c 63 #include "progress.h"
914 outcurl->progress.flags = data->progress.flags;
915 outcurl->progress.callback = data->progress.callback;
995 /* zero out Progress data: */
996 memset(&data->progress, 0, sizeof(struct Progress));
998 data->progress.flags |= PGRS_HIDE;
  /bionic/tests/
pthread_test.cpp 721 enum Progress {
728 std::atomic<Progress> progress; member in struct:RwlockWakeupHelperArg
737 ASSERT_EQ(RwlockWakeupHelperArg::LOCK_INITIALIZED, arg->progress);
738 arg->progress = RwlockWakeupHelperArg::LOCK_WAITING;
742 ASSERT_EQ(RwlockWakeupHelperArg::LOCK_RELEASED, arg->progress);
745 arg->progress = RwlockWakeupHelperArg::LOCK_ACCESSED;
752 wakeup_arg.progress = RwlockWakeupHelperArg::LOCK_INITIALIZED;
761 ASSERT_EQ(RwlockWakeupHelperArg::LOCK_WAITING, wakeup_arg.progress);
763 wakeup_arg.progress = RwlockWakeupHelperArg::LOCK_RELEASED
1127 std::atomic<Progress> progress; member in class:pthread_CondWakeupTest
1598 std::atomic<Progress> progress; member in class:MutexWakeupHelper
    [all...]
  /external/llvm/lib/CodeGen/
RegisterCoalescer.cpp 139 /// Tries to coalesce all copies in CurrList. Returns true if any progress
    [all...]
  /external/ppp/pppd/plugins/radius/etc/
dictionary.ascend 90 ATTRIBUTE Ascend-Connect-Progress 196 integer
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.filebuffers_3.5.100.v20100520-0800.jar 
  /frameworks/base/docs/html/guide/
guide_toc.cs 256 <li><a href="<?cs var:toroot ?>guide/topics/ui/controls/progress.html">
257 <span class="en">Seek and Progress Bars</span>

Completed in 1157 milliseconds

12 3