Home
last modified time | relevance | path

Searched full:upload (Results 1 – 25 of 1053) sorted by relevance

12345678910>>...43

/external/mesa3d/src/gallium/auxiliary/util/
Du_upload_mgr.c44 unsigned default_size; /* Minimum size of the upload buffer, in bytes. */
48 struct pipe_resource *buffer; /* Upload buffer. */
49 struct pipe_transfer *transfer; /* Transfer object for the upload buffer. */
50 uint8_t *map; /* Pointer to the mapped upload buffer. */
51 unsigned size; /* Actual size of the upload buffer. */
52 unsigned offset; /* Aligned offset to the upload buffer, pointing
62 struct u_upload_mgr *upload = CALLOC_STRUCT( u_upload_mgr ); in u_upload_create() local
63 if (!upload) in u_upload_create()
66 upload->pipe = pipe; in u_upload_create()
67 upload->default_size = default_size; in u_upload_create()
[all …]
Du_upload_mgr.h42 * Create the upload manager.
45 * \param default_size Minimum size of the upload buffer, in bytes.
46 * \param alignment Alignment of each suballocation in the upload buffer.
55 * Destroy the upload manager.
57 void u_upload_destroy( struct u_upload_mgr *upload );
60 * Unmap and release old upload buffer.
62 * This is like u_upload_unmap() except the upload buffer is released for
67 void u_upload_flush( struct u_upload_mgr *upload );
70 * Unmap upload buffer
72 * \param upload Upload manager
[all …]
/external/chromium-trace/catapult/third_party/gsutil/gslib/
Dboto_resumable_upload.py28 count completed by the last upload attempt. If too many retries happen with
29 no progress (per configurable num_retries param), the upload will be
32 Unlike the boto implementation of resumable upload handler, this class does
64 """Upload helper class for resumable uploads via boto."""
70 # (start, end) response indicating service has nothing (upload protocol uses
80 by caller to track this upload across upload
83 resume_url: If present, attempt to resume the upload at this URL.
84 num_retries: Number of times to retry the upload making no progress.
85 This count resets every time we make progress, so the upload
101 """Saves URL and resets upload state.
[all …]
Ddaisy_chain_wrapper.py31 # be unnecessarily downloaded if there is a break in the resumable upload.
54 # Buffer was full, yield thread priority so the upload can pull from it.
64 """Wrapper class for daisy-chaining a cloud download to an upload.
89 unnecessarily downloaded if there is a break in the resumable upload.
92 # Current read position for the upload file pointer.
118 # This is safe to use the upload and download thread because the download
121 # with the upload.
125 # that it can also be raised in the upload thread.
139 It should be set when there is an error during the daisy-chain upload,
140 then this function can be called again with the upload's current position
[all …]
/external/mesa3d/src/mesa/drivers/dri/intel/
Dintel_buffer_objects.c491 if (!intel->upload.bo) in intel_upload_finish()
494 if (intel->upload.buffer_len) { in intel_upload_finish()
495 drm_intel_bo_subdata(intel->upload.bo, in intel_upload_finish()
496 intel->upload.buffer_offset, in intel_upload_finish()
497 intel->upload.buffer_len, in intel_upload_finish()
498 intel->upload.buffer); in intel_upload_finish()
499 intel->upload.buffer_len = 0; in intel_upload_finish()
502 drm_intel_bo_unreference(intel->upload.bo); in intel_upload_finish()
503 intel->upload.bo = NULL; in intel_upload_finish()
513 intel->upload.bo = drm_intel_bo_alloc(intel->bufmgr, "upload", size, 0); in wrap_buffers()
[all …]
/external/mesa3d/src/mesa/drivers/dri/i915/
Dintel_buffer_objects.c491 if (!intel->upload.bo) in intel_upload_finish()
494 if (intel->upload.buffer_len) { in intel_upload_finish()
495 drm_intel_bo_subdata(intel->upload.bo, in intel_upload_finish()
496 intel->upload.buffer_offset, in intel_upload_finish()
497 intel->upload.buffer_len, in intel_upload_finish()
498 intel->upload.buffer); in intel_upload_finish()
499 intel->upload.buffer_len = 0; in intel_upload_finish()
502 drm_intel_bo_unreference(intel->upload.bo); in intel_upload_finish()
503 intel->upload.bo = NULL; in intel_upload_finish()
513 intel->upload.bo = drm_intel_bo_alloc(intel->bufmgr, "upload", size, 0); in wrap_buffers()
[all …]
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/gs/
Dresumable_upload_handler.py43 count completed by the last upload attempt. If too many retries happen with
44 no progress (per configurable num_retries param), the upload will be
60 # (start, end) response indicating server has nothing (upload protocol uses
70 If supplied and the current process fails the upload, it can be
72 a valid tracker URI, we'll resume the upload from this URI; else
73 we'll start a new resumable upload (and write the URI to this
77 :param num_retries: the number of times we'll re-try a resumable upload
79 upload can span many more than this number of retries.)
98 # Ignore non-existent file (happens first time an upload
103 'upload from scratch.' %
[all …]
/external/mesa3d/src/mesa/drivers/dri/i965/
Dintel_buffer_objects.c491 if (!intel->upload.bo) in intel_upload_finish()
494 if (intel->upload.buffer_len) { in intel_upload_finish()
495 drm_intel_bo_subdata(intel->upload.bo, in intel_upload_finish()
496 intel->upload.buffer_offset, in intel_upload_finish()
497 intel->upload.buffer_len, in intel_upload_finish()
498 intel->upload.buffer); in intel_upload_finish()
499 intel->upload.buffer_len = 0; in intel_upload_finish()
502 drm_intel_bo_unreference(intel->upload.bo); in intel_upload_finish()
503 intel->upload.bo = NULL; in intel_upload_finish()
513 intel->upload.bo = drm_intel_bo_alloc(intel->bufmgr, "upload", size, 0); in wrap_buffers()
[all …]
/external/deqp/doc/testspecs/GLES3/
Dperformance.buffer.data_upload.txt19 Buffer upload performance tests
61 + Buffer upload performance after a draw call using the target buffer
68 + Complex buffer usage before upload (e.g transform feedback, copyBufferSubData)
69 + Sustained upload performance tests
73 Upload performance tests approximate upload speed by testing time usage of different
74 buffer upload functions with multiple different buffer sizes. The time usage of these
78 parameters. The test result of an upload test is the median transfer rate of the test
119 performance from the observation of a buffer upload completion (a return from a
122 "processing time" does not include the upload time. All tests and test samples have the
126 Each case's draw function, uploaded buffer type, and upload method is encoded to the case
[all …]
/external/deqp/doc/testspecs/GLES2/
Dperformance.texture.upload.txt19 Texture upload performance tests
22 + dEQP-GLES2.performance.texture.upload.*
29 + Upload functions glTexImage2D and glTexSubImage2D
33 - Upload call only
34 - Upload and draw with uploaded texture + buffer swap
38 + Trashed cache before upload
42 Texture upload performance cases measure the performance of texture upload
43 calls. Subgroup 'upload' measures the duration of upload calls (i.e.
44 recorded iteration time includes only multiple texture upload calls).
46 each upload and swaps buffers afterwards (i.e. recorded iteration time
[all …]
/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/
Dtransfer.py2 """Upload and download support for apitools."""
25 'Upload',
53 """Print upload progress based on response."""
58 """Print information about a completed upload."""
59 print('Upload complete')
518 class Upload(_Transfer): class
520 """Data for a single Upload.
523 stream: The stream to upload.
524 mime_type: MIME type of the upload.
525 total_size: (optional) Total upload size for the stream.
[all …]
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/glacier/
Dlayer1.py584 the vault inventory useful. For example, when you upload an
749 synchronous operation, and for a successful upload, your data
754 Glacier. After you upload an archive, you should save the
777 Archives are immutable. After you upload an archive, you
788 `Uploading an Archive in Amazon Glacier`_ and `Upload
795 :param archive: The data to upload.
881 This operation initiates a multipart upload. Amazon Glacier
882 creates a multipart upload resource and returns its ID in the
883 response. The multipart upload ID is used in subsequent
884 requests to upload parts of an archive (see
[all …]
Dvault.py75 multipart upload will be used.
78 :param file: A filename to upload
96 :param file: A filename to upload
115 Create a new archive and begin a multi-part upload to it.
122 :param part_size: The part size for the multipart upload.
139 Create a new archive and upload the data from the given file
143 :param filename: A filename to upload
146 :param file_obj: A file-like object to upload
194 "upload part start byte is not on a part boundary")
195 assert (length <= part_size), "upload part is bigger than part size"
[all …]
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/s3/
Dmultipart.py33 Represents a completed MultiPart Upload. Contains the
36 * location - The URI of the completed upload
37 * bucket_name - The name of the bucket in which the upload
40 * etag - The MD5 hash of the completed, combined upload
41 * version_id - The version_id of the completed upload
76 Represents a single part in a MultiPart upload.
116 A generator function for listing parts of a multipart upload.
130 Represents a MultiPart Upload operation.
205 Return the uploaded parts of this MultiPart Upload. This is
231 Upload another part of this MultiPart Upload.
[all …]
/external/curl/tests/data/
Dtest62525 …//%HOSTIP:%SSHPORT%PWD/log/test625.a/upload.625 -T log/file625.txt sftp://%HOSTIP:%SSHPORT%PWD/log…
28 …est610.pl move %PWD/log/test625.a/upload.625 %PWD/log/upload.625 rmdir %PWD/log/test625.a rm %PWD/…
32 for ssh upload test
39 <upload>
41 for ssh upload test
42 </upload>
Dtest6035 SCP upload
21 SCP upload
24 …rl_client_key.pub -u %USER: -T log/file603.txt scp://%HOSTIP:%SSHPORT%PWD/log/upload.603 --insecure
28 for ssh upload test
35 <upload>
37 for ssh upload test
38 </upload>
Dtest62425 ….pub -u %USER: -T log/file624.txt sftp://%HOSTIP:%SSHPORT%PWD/log/test624.dir/upload.624 --insecure
28 perl %SRCDIR/libtest/test610.pl move %PWD/log/test624.dir/upload.624 %PWD/log/upload.624 rmdir %PWD…
32 for ssh upload test
39 <upload>
41 for ssh upload test
42 </upload>
Dtest21618 FTP upload two files to the same dir
21 -T log/upload.216 ftp://%HOSTIP:%FTPPORT/a/path/216/ -T log/upload.216 ftp://%HOSTIP:%FTPPORT/a/pat…
23 <file name="log/upload.216">
24 upload this file twice
39 STOR upload.216
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/gs/
Dtest_resumable_uploads.py48 """Resumable upload test suite."""
95 Tests a single resumable upload, with no tracker URI persistence
109 Tests that failed resumable upload leaves a correct tracker URI file
175 Tests a resumable upload that fails with a non-retryable exception
194 Tests resumable upload that fails once and then completes, with tracker
216 Tests resumable upload that fails twice in one process, then completes
231 Tests resumable upload that fails completely in one process,
271 Tests resumable upload that successfully uploads some content
274 # Set up harness to fail upload after several hundred KB so upload
308 Tests that resumable upload correctly sets passed metadata
[all …]
/external/chromium-trace/catapult/dependency_manager/dependency_manager/
Duploader.py20 'Attempted to partially initialize upload data with bucket %s, '
35 def Upload(self, force=False): member in CloudStorageUploader
36 """Upload all pending files and then write the updated config to disk.
38 Will attempt to copy files existing in the upload location to a backup
43 file already exists in the upload location.
47 upload location of a file already exists.
57 logging.debug('A file already exists at upload path %s in self.cs_bucket'
73 logging.error('Failed to upload %s to %s in cloud_storage bucket %s',
79 """Attempt to undo the previous call to Upload.
81 Does nothing if no previous call to Upload was made, or if nothing was
/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/samples/storage_sample/
Duploads_test.py3 These tests exercise most of the corner cases for upload/download of
46 self.__upload = storage.Upload.FromStream(
72 response = self.__client.objects.Insert(request, upload=self.__upload)
114 request, upload=self.__upload)
127 # Start the upload
130 request, upload=self.__upload)
134 # same upload.
136 second_upload_attempt = apitools_base.Upload.FromData(
141 final_upload_attempt = apitools_base.Upload.FromData(
145 # Verify the upload
[all …]
/external/owasp/sanitizer/tools/
Dgooglecode_upload.py12 # To upload a file to Google Code, you need to provide a path to the
21 # Note that the upload script requests that you enter your
33 # the upload() function, which is the meat of the uploader. You
59 def upload(file, project_name, user_name, password, summary, labels=None): function
60 """Upload a file to a Google Code project's file server.
72 http_status: 201 if the upload succeeded, something else if an
75 file_url: If the upload succeeded, the URL of the file on Google
114 the file to upload. The file will be uploaded to Google Code with
124 # Add the metadata about the upload first
143 # The upload server determines the mime-type, no need to set it.
[all …]
/external/autotest/utils/
Dpackager.py4 Utility to upload or remove the packages from the packages repository.
56 " from client/deps directory and upload to the repo",
59 "from client/profilers directory and upload to the repo",
62 " or client/site_tests and upload to the repo.",
70 "repository location to upload the packages to.",
72 parser.add_option("--all", help="Upload all the files locally "
81 # Method to upload or remove package depending on the flag passed to it.
101 # Tar the source and upload
148 """Process a full upload of packages as a directory upload."""
156 print ("Temp destination for packages is full %s, aborting upload: %s"
[all …]
/external/bison/build-aux/
Dgnupload2 # Sign files and upload them.
50 -- treat the remaining arguments as files to upload
73 build directive files and upload files by FTP
75 build directive files and upload files by SFTP
76 [user@]host:DIRECTORY upload files with scp
84 1. Upload foobar-1.0.tar.gz to ftp.gnu.org:
87 2. Upload foobar-1.0.tar.gz and foobar-1.0.tar.xz to ftp.gnu.org:
95 4. Upload foobar-0.9.90.tar.gz to two sites:
100 5. Delete oopsbar-0.9.91.tar.gz and upload foobar-0.9.91.tar.gz
219 echo "$0: No file to upload" 1>&2
[all …]
/external/deqp/framework/opengl/
DgluTexture.cpp80 void Texture1D::upload (void) in upload() function in glu::Texture1D
87 GLU_EXPECT_NO_ERROR(gl.getError(), "Texture upload failed"); in upload()
94 continue; // Don't upload. in upload()
100 GLU_EXPECT_NO_ERROR(gl.getError(), "Texture upload failed"); in upload()
161 void Texture2D::upload (void) in upload() function in glu::Texture2D
170 GLU_EXPECT_NO_ERROR(gl.getError(), "Texture upload failed"); in upload()
177 continue; // Don't upload. in upload()
184 GLU_EXPECT_NO_ERROR(gl.getError(), "Texture upload failed"); in upload()
206 // Upload to GL texture in compressed form. in loadCompressed()
211 GLU_EXPECT_NO_ERROR(gl.getError(), "Texture upload failed"); in loadCompressed()
[all …]

12345678910>>...43