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

1 2 3 4 5

  /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...]
  /external/walt/server/
main.py 49 @route('/upload', method='POST')
50 def upload(): function
  /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...]
  /external/skia/infra/bots/assets/
assets.py 45 def upload(args): function
46 """Upload a new version of the asset."""
74 'upload', help='Upload a new version of an asset.')
75 prs_upload.set_defaults(func=upload)
asset_utils_test.py 63 def upload(self, name, version, target_dir): member in class:_LocalStore
91 # Upload a version, download it again.
92 store.upload(self.asset_name, 0, input_dir)
105 store.upload(self.asset_name, 0, input_dir)
107 store.upload(self.asset_name, 1, input_dir)
209 # Upload a version, download it again.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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/python/cpython2/Lib/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'),
192 msg = 'Upload failed (%s): %s' % (status, reason)
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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),
  /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/autotest/client/site_tests/firmware_TouchMTB/
cros_gs.py 73 def upload(self, data, bucket_dir=''): member in class:CrosGs
74 """Upload the data to the chosen bucket."""
  /external/curl/docs/examples/
ftpuploadresume.c 23 * Upload to FTP, resuming failed transfers.
65 /* read data to upload */
80 int upload(CURL *curlhandle, const char *remotepath, const char *localpath, function
166 upload(curlhandle, "ftp://user:pass@example.com/path/file", "C:\\file",
  /frameworks/base/libs/hwui/
PixelBuffer.cpp 40 void upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height, int offset) override;
65 void CpuPixelBuffer::upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height, int offset) { function in class:android::uirenderer::CpuPixelBuffer
81 void upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height, int offset) override;
137 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 37 * Before the buffer can be used by the GPU, for instance to upload
44 * using a PixelBuffer to upload to a texture.
103 * Upload the specified rectangle of this pixel buffer as a
107 virtual void upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height, int offset) = 0;
110 * Upload the specified rectangle of this pixel buffer as a
117 void upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height) { function in class:android::uirenderer::PixelBuffer
118 upload(x, y, width, height, getOffset(x, y));
Texture.cpp 120 void Texture::upload(GLint internalFormat, uint32_t width, uint32_t height, function in class:android::uirenderer::Texture
279 void Texture::upload(Bitmap& bitmap) { function in class:android::uirenderer::Texture
280 ATRACE_FORMAT("Upload %ux%u Texture", bitmap.width(), bitmap.height());
  /external/autotest/site_utils/
perf_csv_uploader.py 8 This module is used to upload csv files generated by performance related tests
16 3. Locate the csv files in GS, and upload them to desired cns location.
40 # This allows gs_offloader to have enough time to upload the results to GS.
46 # Timeout in minutes for upload attempts for a given folder.
55 uploaded, and logic to upload the csv files.
62 # A class variable whose value is the cns path to upload the csv files to.
119 def upload(self): member in class:CsvFolder
120 """Upload the folder to cns.
251 folder.upload()
257 logging.error('Failed to upload folder %s, error: %s'
    [all...]
  /external/curl/tests/libtest/
lib591.c 46 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/mesa3d/src/gallium/auxiliary/indices/
u_primconvert.c 59 struct u_upload_mgr *upload; member in struct:primconvert_context
77 if (pc->upload)
78 u_upload_destroy(pc->upload);
155 if (!pc->upload) {
156 pc->upload = u_upload_create(pc->pipe, 4096, PIPE_BIND_INDEX_BUFFER,
160 u_upload_alloc(pc->upload, 0, new_ib.index_size * new_info.count, 4,
173 u_upload_unmap(pc->upload);
  /cts/hostsidetests/incident/apps/batterystatsapp/src/com/android/server/cts/device/batterystats/
BatteryStatsWifiTransferTests.java 64 public static String upload() { method in class:BatteryStatsWifiTransferTests
  /external/mesa3d/src/gallium/auxiliary/util/
u_upload_mgr.c 44 unsigned default_size; /* Minimum size of the upload buffer, in bytes. */
50 struct pipe_resource *buffer; /* Upload buffer. */
51 struct pipe_transfer *transfer; /* Transfer object for the upload buffer. */
52 uint8_t *map; /* Pointer to the mapped upload buffer. */
53 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->bind = bind
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/nv30/
nv30_fragprog.c 71 bool upload = false; local
79 upload = true;
96 upload = true;
100 if (upload)
107 if (nv30->state.fragprog != fp || upload) {
  /external/mesa3d/src/gallium/state_trackers/nine/
nine_buffer_upload.c 50 unsigned free_offset; /* Aligned offset to the upload buffer, pointing
73 nine_upload_create_buffer_group(struct nine_buffer_upload *upload,
77 struct pipe_screen *screen = upload->pipe->screen;
78 DBG("%p %p\n", upload, group);
85 resource.width0 = upload->buffers_size;
97 group->map = pipe_buffer_map_range(upload->pipe, group->resource,
98 0, upload->buffers_size,
113 nine_upload_destroy_buffer_group(struct nine_buffer_upload *upload,
116 DBG("%p %p\n", upload, group);
120 pipe_transfer_unmap(upload->pipe, group->transfer)
131 struct nine_buffer_upload *upload; local
    [all...]
  /frameworks/base/libs/hwui/font/
CacheTexture.cpp 128 // as glTexSubImage2D(). This allows us to upload a sub-rectangle of a texture.
129 // With OpenGL ES 2.0 we have to upload entire stripes instead.
196 bool CacheTexture::upload() { function in class:android::uirenderer::CacheTexture
216 mPixelBuffer->upload(x, y, width, height);

Completed in 1123 milliseconds

1 2 3 4 5