/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 | 94 ResourceUpdate upload = local 101 queue->AppendPartialUpload(upload); 103 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/browser/ui/webui/media/ |
webrtc_logs_ui.cc | 83 // Asynchronously fetches the list of upload WebRTC logs. Called from JS. 139 DictionaryValue* upload = new DictionaryValue(); local 140 upload->SetString("id", i->id); 141 upload->SetString("time", base::TimeFormatFriendlyDateAndTime(i->time)); 142 upload_list.Append(upload);
|
/external/qemu/android/ |
android.h | 38 int upload; member in struct:__anon24619
|
/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/browser/policy/cloud/ |
device_management_service_browsertest.cc | 69 const net::UploadDataStream* upload = request->get_upload(); local 70 if (upload != NULL && 71 upload->element_readers().size() == 1 && 72 upload->element_readers()[0]->AsBytesReader()) { 75 upload->element_readers()[0]->AsBytesReader();
|
/external/chromium_org/components/breakpad/app/ |
breakpad_linux_impl.h | 55 bool upload; // Whether to upload or save crash dump. member in struct:breakpad::BreakpadInfo
|
/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);
|
/frameworks/base/libs/hwui/font/ |
CacheTexture.cpp | 120 // as glTexSubImage2D(). This allows us to upload a sub-rectangle of a texture. 121 // With OpenGL ES 2.0 we have to upload entire stripes instead. 206 bool CacheTexture::upload() { function in class:android::uirenderer::CacheTexture 220 mTexture->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
|