HomeSort by relevance Sort by last modified time
    Searched defs:upload (Results 1 - 25 of 36) sorted by null

1 2

  /external/bison/build-aux/
gnupload 2 # 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>&
313 upload () function
    [all...]
  /frameworks/base/core/tests/coretests/src/com/android/internal/http/multipart/
MultipartTest.java 34 File upload = File.createTempFile("Multipart", "test"); local
36 FileWriter outFile = new FileWriter(upload);
47 parts[1] = new FilePart(upload.getName(), upload);
81 output.append(upload.getName());
83 output.append(upload.getName());
  /external/owasp/sanitizer/tools/
googlecode_upload.py 12 # 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...]
  /frameworks/base/libs/hwui/
PixelBuffer.cpp 44 void upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height, int offset) override;
70 void CpuPixelBuffer::upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height, int offset) { function in class:android::uirenderer::CpuPixelBuffer
89 void upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height, int offset) override;
149 void GpuPixelBuffer::upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height, int offset) { function in class:android::uirenderer::GpuPixelBuffer
PixelBuffer.h 36 * Before the buffer can be used by the GPU, for instance to upload
43 * using a PixelBuffer to upload to a texture.
116 * Upload the specified rectangle of this pixel buffer as a
120 virtual void upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height, int offset) = 0;
123 * Upload the specified rectangle of this pixel buffer as a
130 void upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height) { function in class:android::uirenderer::PixelBuffer
131 upload(x, y, width, height, getOffset(x, y));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_upload.py 2 """Tests for distutils.command.upload."""
7 from distutils.command import upload as upload_mod
8 from distutils.command.upload import upload namespace
77 cmd = upload(dist)
90 cmd = upload(dist)
97 cmd = upload(dist)
111 cmd = upload(dist)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_upload.py 2 """Tests for distutils.command.upload."""
7 from distutils.command import upload as upload_mod
8 from distutils.command.upload import upload namespace
77 cmd = upload(dist)
90 cmd = upload(dist)
97 cmd = upload(dist)
111 cmd = upload(dist)
  /external/mesa3d/src/gallium/auxiliary/util/
u_upload_mgr.c 44 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 ); local
63 if (!upload)
66 upload->pipe = pipe;
67 upload->default_size = default_size
    [all...]
u_blitter.c 58 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);
    [all...]
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_fragprog.c 66 boolean upload = FALSE; local
74 upload = TRUE;
91 upload = TRUE;
95 if (upload)
102 if (nv30->state.fragprog != fp || upload) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
upload.py 1 """distutils.command.upload
3 Implements the Distutils 'upload' subcommand (upload package to PyPI)."""
18 class upload(PyPIRCCommand): class in inherits:PyPIRCCommand
20 description = "upload binary package to PyPI"
24 'sign files to upload using gpg'),
193 self.announce('Upload failed (%s): %s' % (status, reason),
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
upload.py 1 """distutils.command.upload
3 Implements the Distutils 'upload' subcommand (upload package to PyPI)."""
18 class upload(PyPIRCCommand): class in inherits:PyPIRCCommand
20 description = "upload binary package to PyPI"
24 'sign files to upload using gpg'),
193 self.announce('Upload failed (%s): %s' % (status, reason),
  /external/libphonenumber/demo/src/com/google/phonenumbers/
PhoneNumberParserServlet.java 62 ServletFileUpload upload = new ServletFileUpload(); local
63 upload.setSizeMax(50000);
65 FileItemIterator iterator = upload.getItemIterator(req);
  /frameworks/base/libs/hwui/font/
CacheTexture.cpp 125 // as glTexSubImage2D(). This allows us to upload a sub-rectangle of a texture.
126 // With OpenGL ES 2.0 we have to upload entire stripes instead.
204 bool CacheTexture::upload() { function in class:android::uirenderer::CacheTexture
218 mPixelBuffer->upload(x, y, width, height);
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
TextureUploader.java 69 private int upload(GLCanvas canvas, ArrayDeque<UploadedTexture> deque, method in class:TextureUploader
97 uploadQuota = upload(canvas, mFgTextures, uploadQuota, false);
99 upload(canvas, mBgTextures, uploadQuota, true); method
  /external/deqp/framework/opengl/
gluTexture.cpp 80 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");
206 // Upload to GL texture in compressed form.
211 GLU_EXPECT_NO_ERROR(gl.getError(), "Texture upload failed")
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
896 void TextureBuffer::upload (void) function in class:glu::TextureBuffer
    [all...]
  /external/skia/src/gpu/
GrBatchTarget.h 65 virtual void upload(TextureUploader)=0;
71 void upload(Uploader* upload) { function in class:GrBatchTarget
72 if (this->asapToken() == upload->lastUploadToken()) {
73 fAsapUploads.push_back().reset(SkRef(upload));
75 fInlineUploads.push_back().reset(SkRef(upload));
94 fAsapUploads[i]->upload(TextureUploader(fGpu));
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_draw_upload.c 317 * 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[0]'s buffer. *
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_sundry.py 49 import distutils.command.upload namespace
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_sundry.py 49 import distutils.command.upload namespace
  /packages/services/Telephony/src/com/android/phone/vvm/omtp/sync/
OmtpVvmSyncService.java 53 /** Only upload to the server. */
258 uploadSuccess = upload(imapHelper);
264 Log.v(TAG, "upload succeeded: ["+ String.valueOf(uploadSuccess)
335 private boolean upload(ImapHelper imapHelper) { method in class:OmtpVvmSyncService
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
aether-connector-wagon-0.9.0.M2.jar 
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_context.h 260 } upload; member in struct:intel_context
  /external/regex-re2/lib/codereview/
codereview.py 282 self.Upload(ui, repo, gofmt_just_warn=True, creating=True)
309 def Upload(self, ui, repo, send_mail=False, gofmt=True, gofmt_just_warn=False, creating=False, quiet=False):
333 # 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)
2073 def upload(ui, repo, name, **opts): function
    [all...]
  /external/deqp/modules/gles3/performance/
es3pBufferDataUploadTests.cpp 21 * \brief Buffer data upload performance tests.
302 SingleOperationStatistics upload; member in struct:deqp::gles3::Performance::__anon7802::UploadRenderReadStatistics
321 SingleOperationStatistics upload; member in struct:deqp::gles3::Performance::__anon7802::RenderUploadRenderReadStatistics
871 stats.upload = calculateSingleOperationStatistics(samples, &UploadRenderReadDuration::uploadDuration);
885 stats.upload = calculateSingleOperationStatistics(samples, &UploadRenderReadDurationWithUnrelatedUploadSize::uploadDuration);
900 stats.upload = calculateSingleOperationStatistics(samples, &RenderUploadRenderReadDuration::uploadDuration);
    [all...]

Completed in 607 milliseconds

1 2