Searched defs:attach (Results 1 - 25 of 59) sorted by relevance

123

/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/vpc/
H A Dvpngateway.py81 def attach(self, vpc_id, dry_run=False): member in class:VpnGateway
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/
H A Dnetworkinterface.py193 def attach(self, instance_id, device_index, dry_run=False): member in class:NetworkInterface
H A Dvolume.py137 def attach(self, instance_id, device, dry_run=False): member in class:Volume
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/pyami/installers/ubuntu/
H A Debs.py23 Automated installer to attach, format and mount an EBS volume.
112 def attach(self): member in class:EBSInstaller
135 boto.log.info('Attempt to attach the EBS volume %s to this instance (%s) returned %s. Trying again in a bit.' % (self.volume_id, self.instance_id, e.errors))
199 # First, find and attach the volume
200 self.attach()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DSocketTransportWrapper.java138 public void attach(String address, long attachTimeout, long handshakeTimeout) throws IOException { method in class:SocketTransportWrapper
H A DTransportWrapper.java69 public void attach(String address, long attachTimeout, long handshakeTimeout) throws IOException; method in interface:TransportWrapper
/external/pdfium/third_party/agg23/
H A Dagg_renderer_scanline.h33 void attach(base_ren_type& ren, span_gen_type& span_gen) function in class:agg::renderer_scanline_aa
H A Dagg_renderer_base.h38 void attach(pixfmt_type& ren) function in class:agg::renderer_base
H A Dagg_rendering_buffer.h65 attach(buf, width, height, stride);
67 void attach(int8u* buf, unsigned width, unsigned height, int stride) function in class:agg::rendering_buffer
/external/strace/
H A Dmtd.c423 struct ubi_attach_req attach; local
426 if (umove_or_printaddr(tcp, arg, &attach))
432 attach.ubi_num, attach.mtd_num,
433 attach.vid_hdr_offset, attach.max_beb_per1024);
/external/vogar/src/vogar/monitor/
H A DHostMonitor.java53 public boolean attach(int port) throws IOException { method in class:HostMonitor
/external/skia/platform_tools/android/apps/visualbench/src/main/jni/
H A DSkOSWindow_AndroidNative.cpp24 bool SkOSWindow::attach(SkBackEndTypes attachType, function in class:SkOSWindow
/external/valgrind/coregrind/
H A Dvgdb-invoker-solaris.c127 static Bool attach(pid_t pid) function
489 if (attach(pid) != True) {
H A Dvgdb-invoker-ptrace.c354 Bool attach (pid_t pid, const char *msg) function
360 // repetitively attach error. We will output once an error
361 // for the initial_attach. Once the 1st attach has succeeded, we
459 if (!attach(vgdb_threads[i].lwpid, "attach_thread")) {
460 ERROR(0, "ERROR attach pid %d tid %d\n",
822 DEBUG(1, "attach to 'main' pid %d\n", pid);
823 if (!attach(pid, "attach main pid")) {
824 ERROR(0, "error attach main pid %d\n", pid);
/external/zlib/src/contrib/iostream/
H A Dzfstream.cpp60 gzfilebuf *gzfilebuf::attach( int file_descriptor, function in class:gzfilebuf
261 void gzfilestream_common::attach( int fd, int io_mode ) { function in class:gzfilestream_common
263 if ( !buffer.attach( fd, io_mode) )
306 gzfilestream_common::attach( fd, io_mode );
326 gzfilestream_common::attach( fd, io_mode );
/external/zlib/src/contrib/iostream3/
H A Dzfstream.cc79 gzfilebuf::attach(int fd, function in class:gzfilebuf
94 // Attempt to attach to file
387 // Initialize stream buffer and attach to file
393 this->attach(fd, mode);
409 gzifstream::attach(int fd, function in class:gzifstream
412 if (!sb.attach(fd, mode | std::ios_base::in))
442 // Initialize stream buffer and attach to file
448 this->attach(fd, mode);
464 gzofstream::attach(int fd, function in class:gzofstream
467 if (!sb.attach(f
[all...]
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/manage/
H A Dvolume.py200 def attach(self, server=None): member in class:Volume
287 self.attach()
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_bb.cpp104 bb->cfg.attach(&pol.get(obb)->cfg, it.getType());
295 BasicBlock::splitCommon(Instruction *insn, BasicBlock *bb, bool attach) argument
311 bb->cfg.attach(e->getTarget(), e->getType());
321 if (attach)
322 this->cfg.attach(&bb->cfg, Graph::Edge::TREE);
326 BasicBlock::splitBefore(Instruction *insn, bool attach) argument
331 splitCommon(insn, bb, attach);
336 BasicBlock::splitAfter(Instruction *insn, bool attach) argument
344 splitCommon(insn ? insn->next : NULL, bb, attach);
H A Dnv50_ir_graph.cpp95 void Graph::Node::attach(Node *node, Edge::Type kind) function in class:nv50_ir::Graph::Node
/external/skia/src/views/sdl/
H A DSkOSWindow_SDL.cpp60 bool SkOSWindow::attach(SkBackEndTypes attachType, int msaaSampleCount, AttachmentInfo* info) { function in class:SkOSWindow
/external/kernel-headers/original/uapi/scsi/
H A Dcxlflash_ioctl.h146 struct dk_cxlflash_attach attach; member in union:cxlflash_ioctls
/external/opencv/cxcore/include/
H A Dcxcore.hpp91 attach( cvCreateImage( size, depth, channels ));
97 void attach( IplImage* img, bool use_refcount=true ) function in class:CvImage
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/android/util/
H A DTestFragmentTransaction.java93 public FragmentTransaction attach(Fragment fragment) { method in class:TestFragmentTransaction
/external/skia/platform_tools/android/apps/sample_app/src/main/jni/
H A Dcom_skia_SkiaSampleRenderer.cpp65 bool SkOSWindow::attach(SkBackEndTypes /* attachType */, int /*msaaSampleCount*/, AttachmentInfo* info) function in class:SkOSWindow
/external/skia/src/views/unix/
H A DSkOSWindow_Unix.cpp352 bool SkOSWindow::attach(SkBackEndTypes, int msaaSampleCount, AttachmentInfo* info) { function in class:SkOSWindow

Completed in 830 milliseconds

123