HomeSort by relevance Sort by last modified time
    Searched defs:upload (Results 1 - 25 of 48) 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/chromium_org/cc/resources/
bitmap_skpicture_content_layer_updater.cc 35 ResourceUpdate upload = ResourceUpdate::Create( local
38 queue->AppendPartialUpload(upload);
40 queue->AppendFullUpload(upload);
image_layer_updater.cc 51 ResourceUpdate upload = ResourceUpdate::Create( local
54 queue->AppendPartialUpload(upload);
56 queue->AppendFullUpload(upload);
resource_update_queue.cc 15 void ResourceUpdateQueue::AppendFullUpload(const ResourceUpdate& upload) {
16 full_entries_.push_back(upload);
19 void ResourceUpdateQueue::AppendPartialUpload(const ResourceUpdate& upload) {
20 partial_entries_.push_back(upload);
33 ResourceUpdate upload = temp.front(); local
35 if (!upload.texture->BackingResourceWasEvicted())
36 entry_queue->push_back(upload);
bitmap_content_layer_updater.cc 93 ResourceUpdate upload = local
100 queue->AppendPartialUpload(upload);
102 queue->AppendFullUpload(upload);
  /external/chromium_org/chrome/test/chromedriver/third_party/googlecode/
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
65 def upload(file, project_name, user_name, password, summary, labels=None): function
66 """Upload a file to a Google Code project's file server.
78 http_status: 201 if the upload succeeded, something else if an
81 file_url: If the upload succeeded, the URL of the file on Google
120 the file to upload. The file will be uploaded to Google Code with
130 # Add the metadata about the upload first
149 # The upload server determines the mime-type, no need to set it
    [all...]
  /external/chromium_org/chrome/test/webdriver/commands/
file_upload_command.cc 45 session_->temp_dir(), FILE_PATH_LITERAL("upload"), &upload_dir)) {
50 base::FilePath upload; local
51 if (!UnzipSoleFile(upload_dir, zip_data, &upload, &error_msg)) {
57 response->SetValue(new base::StringValue(WideToUTF8(upload.value())));
59 response->SetValue(new base::StringValue(upload.value()));
  /external/chromium_org/cc/layers/
nine_patch_layer.cc 66 ResourceUpdate upload = ResourceUpdate::Create(resource_->texture(), local
71 queue->AppendFullUpload(upload);
  /external/qemu/android/
android.h 38 int upload; member in struct:__anon26408
  /frameworks/base/libs/hwui/
PixelBuffer.cpp 44 void upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height, int offset);
74 void CpuPixelBuffer::upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height, int offset) { function in class:android::uirenderer::CpuPixelBuffer
93 void upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height, int offset);
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 35 * Before the buffer can be used by the GPU, for instance to upload
42 * using a PixelBuffer to upload to a texture.
115 * Upload the specified rectangle of this pixel buffer as a
119 virtual void upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height, int offset) = 0;
122 * Upload the specified rectangle of this pixel buffer as a
129 void upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height) { function in class:android::uirenderer::PixelBuffer
130 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/chromium_org/chrome/app/
breakpad_linux_impl.h 59 bool upload; // Whether to upload or save crash dump. member in struct:BreakpadInfo
  /external/chromium_org/chrome/browser/policy/cloud/
device_management_service_browsertest.cc 64 const net::UploadDataStream* upload = request->get_upload(); local
65 if (upload != NULL &&
66 upload->element_readers().size() == 1 &&
67 upload->element_readers()[0]->AsBytesReader()) {
70 upload->element_readers()[0]->AsBytesReader();
  /external/chromium_org/chrome/browser/ui/webui/media/
webrtc_logs_ui.cc 86 // Asynchronously fetches the list of upload WebRTC logs. Called from JS.
145 DictionaryValue* upload = new DictionaryValue(); local
146 upload->SetString("id", i->id);
147 upload->SetString("time", base::TimeFormatFriendlyDateAndTime(i->time));
148 upload_list.Append(upload);
  /external/chromium_org/third_party/mesa/src/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...]
  /external/chromium_org/third_party/mesa/src/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) {
  /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...]
  /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) {
  /external/qemu/android/protocol/
core-commands.h 67 int upload; member in struct:UICmdGetNetSpeedResp
  /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/chromium_org/cc/test/
tiled_layer_test_common.cc 23 ResourceUpdate upload = ResourceUpdate::Create( local
26 queue->AppendPartialUpload(upload);
28 queue->AppendFullUpload(upload);

Completed in 1477 milliseconds

1 2