Searched defs:upload (Results 1 - 25 of 27) sorted by relevance

12

/external/bison/build-aux/
H A 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
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
274 # Arguments: See upload, below
305 # upload DEST DESTDIR BASE FILE STMT FILES
312 # FILES List of files to upload
313 upload () function
[all...]
/external/owasp/sanitizer/tools/
H A 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
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.
157 """Find credentials and upload
[all...]
/external/curl/tests/libtest/
H A Dlib591.c46 FILE *upload = NULL; local
51 upload = fopen(libtest_arg3, "rb");
52 if(!upload) {
62 fclose(upload);
78 easy_setopt(easy, CURLOPT_READDATA, upload);
146 fclose(upload);
/external/autotest/client/site_tests/firmware_TouchMTB/
H A Dcros_gs.py73 def upload(self, data, bucket_dir=''): member in class:CrosGs
/external/curl/docs/examples/
H A Dftpuploadresume.c68 /* read data to upload */
83 int upload(CURL *curlhandle, const char * remotepath, const char * localpath, function
168 upload(curlhandle, "ftp://user:pass@example.com/path/file", "C:\\file", 0, 3);
H A Dhttp2-upload.c177 static void setup(CURL *hnd, int num, const char *upload) argument
188 sprintf(url, "https://localhost:8443/upload-%d", num);
191 stat(upload, &file_info);
194 indata[num].in = fopen(upload, "rb");
204 /* provide the size of the upload */
207 /* send in the URL to store the upload as */
210 /* upload please */
248 /* if given a file name, upload this! */
/external/mesa3d/src/gallium/drivers/nv30/
H A Dnv30_fragprog.c66 boolean upload = FALSE; local
74 upload = TRUE;
91 upload = TRUE;
95 if (upload)
102 if (nv30->state.fragprog != fp || upload) {
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/glacier/
H A Dconcurrent.py77 """Concurrently upload an archive to glacier.
79 This class uses a thread pool to concurrently upload an archive
80 to glacier using the multipart upload API.
110 def upload(self, filename, description=None): member in class:ConcurrentUploader
117 to properly upload the given file.
120 :param file: The filename to upload
141 # in a result queue which we use to complete the multipart upload.
150 "aborting multipart upload.")
153 log.debug("Completing upload.")
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_upload_mgr.c44 unsigned default_size; /* Minimum size of the upload buffer, in bytes. */
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 ); local
63 if (!upload)
66 upload->pipe = pipe;
67 upload->default_size = default_size;
68 upload
117 u_upload_alloc_buffer( struct u_upload_mgr *upload, unsigned min_size ) argument
156 u_upload_alloc( struct u_upload_mgr *upload, unsigned min_out_offset, unsigned size, unsigned *out_offset, struct pipe_resource **outbuf, void **ptr ) argument
213 u_upload_data( struct u_upload_mgr *upload, unsigned min_out_offset, unsigned size, const void *data, unsigned *out_offset, struct pipe_resource **outbuf) argument
237 u_upload_buffer( struct u_upload_mgr *upload, unsigned min_out_offset, unsigned offset, unsigned size, struct pipe_resource *inbuf, unsigned *out_offset, struct pipe_resource **outbuf) argument
[all...]
H A Du_blitter.c58 struct u_upload_mgr *upload; member in struct:blitter_context_priv
285 ctx->upload = u_upload_create(pipe, 65536, 4, PIPE_BIND_VERTEX_BUFFER);
337 u_upload_destroy(ctx->upload);
850 u_upload_data(ctx->upload, 0, sizeof(ctx->vertices), ctx->vertices,
852 u_upload_unmap(ctx->upload);
/external/autotest/client/virt/
H A Drss_client.py256 Connect to a RSS (remote shell server) and upload files or directory trees.
291 def upload(self, src_pattern, dst_path, timeout=600): member in class:FileUploadClient
457 def upload(address, port, src_pattern, dst_path, log_func=None, timeout=60, function
460 Connect to server and upload files.
465 client.upload(src_pattern, dst_path, timeout)
472 Connect to server and upload files.
489 parser.add_option("-u", "--upload",
490 action="store_true", dest="upload",
491 help="upload files to server")
499 if options.download == options.upload
[all...]
/external/opencv3/modules/cudev/include/opencv2/cudev/ptr2d/detail/
H A Dgpumat.hpp141 upload(arr);
170 __host__ void GpuMat_<T>::upload(InputArray arr) function in class:cv::cudev::GpuMat_
173 GpuMat::upload(arr);
177 __host__ void GpuMat_<T>::upload(InputArray arr, Stream& stream) function in class:cv::cudev::GpuMat_
180 GpuMat::upload(arr, stream);
/external/skia/src/gpu/
H A DGrBatchFlushState.h16 /** Simple class that performs the upload on behalf of a GrBatchUploader. */
55 /** Inserts an upload to be executred after all batches in the flush prepared their draws
57 void addASAPUpload(GrBatchUploader* upload) { argument
58 fAsapUploads.push_back().reset(SkRef(upload));
74 /** This is a magic token that can be used to indicate that an upload should occur before
89 fAsapUploads[i]->upload(&fUploader);
131 void upload(GrBatchUploader* upload) { argument
132 if (this->asapToken() == upload->lastUploadToken()) {
133 fState->addASAPUpload(upload);
[all...]
/external/deqp/framework/opengl/
H A DgluTexture.cpp80 void Texture1D::upload (void) function in class:glu::Texture1D
87 GLU_EXPECT_NO_ERROR(gl.getError(), "Texture upload failed");
94 continue; // Don't upload.
100 GLU_EXPECT_NO_ERROR(gl.getError(), "Texture upload failed");
161 void Texture2D::upload (void) function in class:glu::Texture2D
170 GLU_EXPECT_NO_ERROR(gl.getError(), "Texture upload failed");
177 continue; // Don't upload.
184 GLU_EXPECT_NO_ERROR(gl.getError(), "Texture upload failed");
211 GLU_EXPECT_NO_ERROR(gl.getError(), "Texture upload failed");
251 texture->upload();
346 void TextureCube::upload (void) function in class:glu::TextureCube
469 void Texture1DArray::upload (void) function in class:glu::Texture1DArray
553 void Texture2DArray::upload (void) function in class:glu::Texture2DArray
673 void Texture3D::upload (void) function in class:glu::Texture3D
766 void TextureCubeArray::upload (void) function in class:glu::TextureCubeArray
902 void TextureBuffer::upload (void) function in class:glu::TextureBuffer
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_draw_upload.c317 * know what data to upload.
365 struct brw_vertex_element *upload[VERT_ATTRIB_MAX]; local
474 upload[nr_uploads++] = input;
478 /* If we need to upload all the arrays, then we can trim those arrays to
495 /* All uploads are interleaved, so upload the arrays together as
496 * interleaved. First, upload the contents and set up upload[0].
498 copy_array_to_vbo_array(brw, upload[0], min_index, max_index,
503 /* Then, just point upload[i] at upload[
[all...]
/external/deqp/external/vulkancts/modules/vulkan/draw/
H A DvktDrawImageObjectUtil.cpp496 upload(queue, allocator, layout, offset, access.getWidth(),
518 upload(queue, allocator, layout, offset, access.getWidth(),
540 upload(queue, allocator, layout, offset, access.getWidth(),
563 void Image::upload (vk::VkQueue queue, function in class:vkt::Draw::Image
/external/deqp/external/vulkancts/modules/vulkan/dynamic_state/
H A DvktDynamicStateImageObjectUtil.cpp496 upload(queue, allocator, layout, offset, access.getWidth(),
518 upload(queue, allocator, layout, offset, access.getWidth(),
540 upload(queue, allocator, layout, offset, access.getWidth(),
563 void Image::upload (vk::VkQueue queue, function in class:vkt::DynamicState::Image
/external/deqp/external/vulkancts/modules/vulkan/query_pool/
H A DvktQueryPoolImageObjectUtil.cpp473 upload(queue, allocator, layout, offset, access.getWidth(),
495 upload(queue, allocator, layout, offset, access.getWidth(),
517 upload(queue, allocator, layout, offset, access.getWidth(),
540 void Image::upload (vk::VkQueue queue, function in class:vkt::QueryPool::Image
/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_context.h260 } upload; member in struct:intel_context
/external/opencv3/modules/core/src/
H A Dmatrix.cpp99 void MatAllocator::upload(UMatData* u, const void* srcptr, int dims, const size_t sz[], function in class:cv::MatAllocator
H A Docl.cpp4859 void upload(UMatData* u, const void* srcptr, int dims, const size_t sz[], function in class:cv::ocl::OpenCLAllocator
4887 Mat::getStdAllocator()->upload(u, srcptr, dims, sz, dstofs, dststep, srcstep);
4920 // This code is from MatAllocator::upload()
5005 upload(dst, src->data + srcrawofs, dims, sz, dstofs, dststep, srcstep);
5054 // This code is from MatAllocator::download()/upload()
5090 upload(dst, src->data + srcrawofs, dims, sz, dstofs, dststep, srcstep);
/external/regex-re2/lib/codereview/
H A Dcodereview.py333 # and then we'll run an immediate upload.
350 # First upload sets the subject for the CL itself.
353 response_body = MySend("/upload", body, content_type=ctype)
1195 ui.write("\ncodereview extension enabled; use mail, upload, or submit instead of commit\n\n")
1927 # upload, to sync current patch and also get change number if CL is new.
1931 # check gofmt for real; allowed upload to warn in order to save CL.
2070 # hg upload
2073 def upload(ui, repo, name, **opts): function
2074 """upload diffs to the code review server
2086 return "cannot upload no
[all...]
/external/deqp/modules/gles3/performance/
H A Des3pBufferDataUploadTests.cpp21 * \brief Buffer data upload performance tests.
302 SingleOperationStatistics upload; member in struct:deqp::gles3::Performance::__anon4303::UploadRenderReadStatistics
321 SingleOperationStatistics upload; member in struct:deqp::gles3::Performance::__anon4303::RenderUploadRenderReadStatistics
871 stats.upload = calculateSingleOperationStatistics(samples, &UploadRenderReadDuration::uploadDuration);
885 stats.upload = calculateSingleOperationStatistics(samples, &UploadRenderReadDurationWithUnrelatedUploadSize::uploadDuration);
900 stats.upload = calculateSingleOperationStatistics(samples, &RenderUploadRenderReadDuration::uploadDuration);
1246 << tcu::TestLog::Float("UploadMedianCost", "Upload: Median cost", "us", QP_KEY_TAG_TIME, stats.upload.medianTime);
1550 << tcu::TestLog::ValueInfo("UnrelatedUploadSize", "Unrelated upload size", "bytes", QP_SAMPLE_VALUE_TAG_PREDICTOR)
1615 << tcu::TestLog::ValueInfo("UnrelatedUploadSize", "Unrelated upload size", "bytes", QP_SAMPLE_VALUE_TAG_PREDICTOR)
2271 // zero buffer as upload sourc
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-jsch.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/curl/lib/
H A Durldata.h678 bool upload_done; /* set to TRUE when doing chunked transfer-encoding upload
691 still left in the buffer, aimed for upload. */
702 on upload */
705 bool forbidchunk; /* used only to explicitly forbid chunk-upload for
706 specific upload buffers. See readmoredata() in
1215 char uploadbuffer[BUFSIZE+1]; /* upload buffer */
1232 char *scratch; /* huge buffer[BUFSIZE*2] when doing upload CRLF replacing */
1305 curl_off_t infilesize; /* size of file to upload, -1 means unknown.
1487 curl_off_t filesize; /* size of file to upload, -1 means unknown */
1490 curl_off_t max_send_speed; /* high speed limit in bytes/second for upload */
1559 bool upload; /* upload request */ member in struct:UserDefined
[all...]

Completed in 1377 milliseconds

12