/libcore/luni/src/main/java/java/io/ |
PipedWriter.java | 37 private PipedReader destination; field in class:PipedWriter 52 * Constructs a new {@code PipedWriter} connected to {@code destination}. 53 * Any data written to this writer can be read from {@code destination}. 55 * @param destination 58 * if {@code destination} is already connected. 60 public PipedWriter(PipedReader destination) throws IOException { 61 super(destination); 62 connect(destination); 75 PipedReader reader = destination; 79 destination = null [all...] |
/system/core/include/cutils/ |
mq.h | 31 /** A destination to which messages can be sent. */ 40 * @param destination to which the message was sent 43 typedef void MqMessageListener(MqDestination* destination, MqMessage* message); 46 * Hears a destination close. 48 * @param destination that closed 50 typedef void MqCloseListener(MqDestination* destination); 59 * @param replyTo destination to which replies should be sent, NULL if none 64 /** Sends a message to a destination. */ 65 void mqSendMessage(MqMessage* message, MqDestination* destination); 67 /** Destination functions. * [all...] |
/external/webkit/JavaScriptCore/assembler/ |
RepatchBuffer.h | 62 void relink(CodeLocationJump jump, CodeLocationLabel destination) 64 MacroAssembler::repatchJump(jump, destination); 67 void relink(CodeLocationCall call, CodeLocationLabel destination) 69 MacroAssembler::repatchCall(call, destination); 72 void relink(CodeLocationCall call, FunctionPtr destination) 74 MacroAssembler::repatchCall(call, destination); 77 void relink(CodeLocationNearCall nearCall, CodePtr destination) 79 MacroAssembler::repatchNearCall(nearCall, CodeLocationLabel(destination)); 82 void relink(CodeLocationNearCall nearCall, CodeLocationLabel destination) 84 MacroAssembler::repatchNearCall(nearCall, destination); [all...] |
/external/nist-sip/java/gov/nist/javax/sip/stack/ |
DefaultMessageLogFactory.java | 16 String destination, String timeStamp, boolean isSender, 18 return new MessageLog(message, source, destination, timeStamp, 23 String destination, long timeStamp, boolean isSender, 25 return new MessageLog(message, source, destination, timeStamp,
|
MessageLog.java | 51 private String destination; field in class:MessageLog 85 String destination, 96 this.destination = destination; 118 String destination, 129 this.destination = destination; 153 + destination
|
/external/v8/src/x64/ |
fast-codegen-x64.cc | 54 ASSERT(!destination().is(no_reg)); 57 __ Move(destination(), cell); 58 __ movq(destination(), 59 FieldOperand(destination(), JSGlobalPropertyCell::kValueOffset)); 61 __ Cmp(destination(), Factory::the_hole_value()); 66 clear_as_smi(destination()); 100 if (destination().is(no_reg)) { 110 Register value_scratch = other_accumulator(destination()); 113 } else if (destination().is(accumulator1())) { 122 ASSERT(!destination().is(no_reg)) [all...] |
/external/v8/src/arm/ |
fast-codegen-arm.cc | 54 ASSERT(!destination().is(no_reg)); 57 __ mov(destination(), Operand(cell)); 58 __ ldr(destination(), 59 FieldMemOperand(destination(), JSGlobalPropertyCell::kValueOffset)); 62 __ cmp(destination(), ip); 67 clear_as_smi(destination()); 105 if (destination().is(accumulator1())) { 117 ASSERT(!destination().is(no_reg)); 130 __ ldr(destination(), FieldMemOperand(receiver_reg(), offset)); 135 __ ldr(destination(), FieldMemOperand(scratch0(), offset)) [all...] |
/external/dnsmasq/contrib/port-forward/ |
dnsmasq-portforward | 55 ${IPTABLES} -t nat -D PREROUTING -p $protocol --destination-port $src -j DNAT --to-destination ${3}:$dst 57 ${IPTABLES} -t nat -A PREROUTING -p $protocol --destination-port $src -j DNAT --to-destination ${3}:$dst
|
/external/nist-sip/java/gov/nist/javax/sip/ |
LogRecordFactory.java | 20 * @param destination -- host:port of the destination of the message. 34 String destination, long timeStamp, boolean isSender,
|
/external/skia/src/animator/ |
SkMatrixParts.cpp | 169 SK_MEMBER(destination, Rect), 178 source(NULL), destination(NULL) { 185 if (source == NULL || destination == NULL) 188 temp.setRectToRect(source->fRect, destination->fRect, 206 if (destination) { 207 SkDebugf("%*s<destination>\n", SkDisplayList::fIndent, ""); 209 destination->dump(maker); 211 SkDebugf("%*s</destination>\n", SkDisplayList::fIndent, ""); 222 SkASSERT(destination == NULL); 223 return getMember("destination"); [all...] |
SkMatrixParts.h | 107 SkDrawRect* destination; member in class:SkRectToRect 122 SkPolygon* destination; member in class:SkPolyToPoly
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
bpqether.h | 16 unsigned char destination[ETH_ALEN]; member in struct:bpq_ethaddr
|
/external/webkit/WebCore/platform/graphics/mac/ |
ImageMac.mm | 97 RetainPtr<CGImageDestinationRef> destination(AdoptCF, CGImageDestinationCreateWithData(data.get(), CFSTR("public.tiff"), numValidFrames, 0)); 99 if (!destination) 103 CGImageDestinationAddImage(destination.get(), images[i], 0); 105 CGImageDestinationFinalize(destination.get());
|
/external/webkit/WebCore/platform/mac/ |
PlatformScreenMac.mm | 79 FloatRect toUserSpace(const NSRect& rect, NSWindow *destination) 82 userRect.setY(NSMaxY([screenForWindow(destination) frame]) - (userRect.y() + userRect.height())); // flip 83 if (destination) 84 userRect.scale(1 / [destination userSpaceScaleFactor]); // scale down
|
/external/webkit/WebKit/chromium/src/mac/ |
WebScreenInfoFactory.mm | 53 static WebRect toUserSpace(const NSRect& rect, NSWindow* destination) 58 NSMaxY([screenForWindow(destination) frame]) - (userRect.origin.y + userRect.size.height); // flip 60 if (destination) { 61 CGFloat scale = 1 / [destination userSpaceScaleFactor]; // scale down
|
/external/webkit/WebCore/platform/image-decoders/haiku/ |
ImageDecoderHaiku.cpp | 40 uint8* destination = reinterpret_cast<uint8*>(bitmap->Bits()); local 49 uint8* destinationHandle = destination; 66 destination += bytesPerRow;
|
/external/webkit/WebKitTools/DumpRenderTree/win/ |
HistoryDelegate.cpp | 161 wstring destination; local 163 destination = urlSuitableForTestResult(wstringFromBSTR(destinationURL)); 165 printf("WebView performed a client redirect from \"%S\" to \"%S\".\n", source.c_str(), destination.c_str()); 178 wstring destination; local 180 destination = urlSuitableForTestResult(wstringFromBSTR(destinationURL)); 182 printf("WebView performed a server redirect from \"%S\" to \"%S\".\n", source.c_str(), destination.c_str());
|
/external/webkit/WebKitTools/Scripts/ |
update-webkit-auxiliary-libs | 89 my $destination = "$webkitLibrariesDir/$relativeName"; 92 mkdir $destination; 96 system "cp", $_, $destination;
|
/external/webkit/WebCore/platform/ |
PlatformScreen.h | 58 FloatRect toUserSpace(const NSRect&, NSWindow *destination);
|
/libcore/luni/src/main/java/org/w3c/dom/ls/ |
LSSerializer.java | 381 * @param destination The destination for the serialized DOM. 394 LSOutput destination)
|
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
Helpers.java | 97 int destination, 100 checkCanHandleDownload(context, mimeType, destination, isPublicApi); 101 if (destination == Downloads.Impl.DESTINATION_FILE_URI) { 105 destination, contentLength); 119 "requested destination file already exists"); 146 String mimeType, int destination, long contentLength) 148 File base = locateDestinationDirectory(context, mimeType, destination, contentLength); 150 destination); 159 extension = chooseExtensionFromFilename(mimeType, destination, filename, dotIndex); 171 return chooseUniqueFilename(destination, filename, extension, recoveryDir) [all...] |
/external/v8/src/ |
register-allocator-inl.h | 80 void Result::CopyTo(Result* destination) const { 81 destination->value_ = value_;
|
jump-target.cc | 355 void BreakTarget::CopyTo(BreakTarget* destination) { 356 ASSERT(destination != NULL); 357 destination->direction_ = direction_; 358 destination->reaching_frames_.Rewind(0); 359 destination->reaching_frames_.AddAll(reaching_frames_); 360 destination->merge_labels_.Rewind(0); 361 destination->merge_labels_.AddAll(merge_labels_); 362 destination->entry_frame_ = entry_frame_; 363 destination->entry_label_ = entry_label_; 364 destination->expected_height_ = expected_height_ [all...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
BluetoothOppShareInfo.java | 37 * send/receive to a destination address. 70 int direction, String destination, int visibility, int confirm, int status, 78 mDestination = destination;
|
/external/webkit/WebCore/platform/graphics/gtk/ |
VideoSinkGStreamer.cpp | 191 guint8 *destination = GST_BUFFER_DATA(newBuffer); local 197 destination[0] = (source[0] * alpha + 128) / 255; 198 destination[1] = (source[1] * alpha + 128) / 255; 199 destination[2] = (source[2] * alpha + 128) / 255; 200 destination[3] = alpha; 203 destination[0] = alpha; 204 destination[1] = (source[1] * alpha + 128) / 255; 205 destination[2] = (source[2] * alpha + 128) / 255; 206 destination[3] = (source[3] * alpha + 128) / 255; 209 destination += 4 [all...] |