HomeSort by relevance Sort by last modified time
    Searched refs:destination (Results 176 - 200 of 428) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium/third_party/libjingle/source/talk/base/
httpcommon.h 210 static int Encode(const CTYPE* source, CTYPE* destination, size_t len);
211 static int Encode(const string& source, string& destination);
212 static int Decode(const CTYPE* source, CTYPE* destination, size_t len);
213 static int Decode(const string& source, string& destination);
  /external/compiler-rt/make/
util.mk 72 # if 'src' is undefined. The destination variable must be undefined.
74 $(call AssertValue,$(call IsUndefined,$(2)),destination is already defined)\
  /external/dbus/bus/
policy.h 65 char *destination; member in struct:BusPolicyRule::__anon5991::__anon5992
policy.c 103 dbus_free (rule->d.send.destination);
818 rule->d.send.destination == NULL;
894 * destination from the message
990 if (rule->d.send.destination != NULL)
995 * to them have a destination service name.
1000 rule->d.send.destination))
1003 rule->d.send.destination);
1012 _dbus_string_init_const (&str, rule->d.send.destination);
1018 rule->d.send.destination);
1025 rule->d.send.destination);
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
AbstractIteratorTester.java 285 private E transferElement(Stack<E> source, Stack<E> destination) {
290 destination.push(source.pop());
291 stackWithLastReturnedElementAtTop = destination;
292 return destination.peek();
  /external/kernel-headers/original/asm-mips/
uaccess.h 117 * @ptr: Destination address, in user space.
156 * @ptr: Destination address, in user space.
381 #define __MODULE_JAL(destination) \
383 __UA_LA "\t$1, " #destination "\n\t" \
387 #define __MODULE_JAL(destination) \
388 "jal\t" #destination "\n\t"
419 * @to: Destination address, in user space.
476 * @to: Destination address, in user space.
551 * @to: Destination address, in kernel space.
583 * @to: Destination address, in kernel space
    [all...]
  /external/tcpdump/
print-eigrp.c 137 u_int8_t destination; /* variable length [1-4] bytes encoding */ member in struct:eigrp_tlv_ip_int_t
157 u_int8_t destination; /* variable length [1-4] bytes encoding */ member in struct:eigrp_tlv_ip_ext_t
334 memcpy(prefix,&tlv_ptr.eigrp_tlv_ip_int->destination,byte_length);
363 memcpy(prefix,&tlv_ptr.eigrp_tlv_ip_ext->destination,byte_length);
  /external/v8/src/x64/
macro-assembler-x64.h 122 void Load(Register destination, ExternalReference source);
123 void Store(ExternalReference destination, Register source);
124 // Loads the address of the external reference into the destination
126 void LoadAddress(Register destination, ExternalReference source);
132 void LoadRoot(Register destination, Heap::RootListIndex index);
137 void LoadRootIndexed(Register destination,
403 // high 32 bits of destination.
425 // the original values of source registers. The destination register
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cg/
ImageBufferCG.cpp 324 RetainPtr<CGImageDestinationRef> destination(AdoptCF, CGImageDestinationCreateWithData(data.get(), uti.get(), 1, 0));
325 if (!destination)
330 // Apply the compression quality to the image destination.
337 CGImageDestinationAddImage(destination.get(), image, imageProperties.get());
338 CGImageDestinationFinalize(destination.get());
  /frameworks/compile/libbcc/runtime/make/
util.mk 72 # if 'src' is undefined. The destination variable must be undefined.
74 $(call AssertValue,$(call IsUndefined,$(2)),destination is already defined)\
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
Delaunay.h 70 EdgePointer makeEdge(SitePointer origin, SitePointer destination);
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Delaunay.h 70 EdgePointer makeEdge(SitePointer origin, SitePointer destination);
  /external/webkit/Source/WebCore/editing/
CompositeEditCommand.cpp 833 void CompositeEditCommand::cleanupAfterDeletion(VisiblePosition destination)
836 if (caretAfterDelete != destination && isStartOfParagraph(caretAfterDelete) && isEndOfParagraph(caretAfterDelete)) {
    [all...]
  /bootable/recovery/minadbd/
adb.h 206 asocket *create_local_service_socket(const char *destination);
209 void connect_to_remote(asocket *s, const char *destination);
  /development/scripts/
divide_and_compress.py 56 rtn.add_option('-d', '--destination', dest='destination', default=None,
80 if options.sourcefiles is None or options.destination is None:
358 zipper = DirectoryZipper(options.destination,
  /external/icu4c/i18n/
ucol_sit.cpp 333 int32_t ucol_sit_dumpSpecs(CollatorSpec *s, char *destination, int32_t capacity, UErrorCode *status)
343 uprv_strcat(destination, "_");
351 destination[len+j] = uprv_toupper(*(s->entries[i].start+j));
358 uprv_strncat(destination,s->entries[i].start, s->entries[i].len);
615 char *destination,
625 if(destination) {
626 uprv_memset(destination, 0, capacity*sizeof(char));
638 return ucol_sit_dumpSpecs(&s, destination, capacity, status);
  /external/libvpx/vp8/common/ppc/
copy_altivec.asm 41 add r5, r5, r6 ;# increment destination pointer
  /external/webkit/Source/WebCore/platform/audio/
SincResampler.cpp 141 void SincResampler::process(float* source, float* destination, unsigned numberOfSourceFrames)
316 *destination++ = result;
  /external/webkit/Source/WebCore/platform/wince/
FileSystemWinCE.cpp 252 String destination = path; local
253 return CreateFile(destination.charactersWithNullTermination(), desiredAccess, 0, 0, creationDisposition, FILE_ATTRIBUTE_NORMAL, 0);
  /external/webkit/Source/WebKit/win/Interfaces/
IWebDownload.idl 139 HRESULT didCreateDestination([in] IWebDownload* download, [in] BSTR destination);
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
ViewHierarchyLoader.java 183 public int compare(ViewNode.Property source, ViewNode.Property destination) {
184 return source.name.compareTo(destination.name);
  /system/core/adb/
adb.h 235 asocket *create_local_service_socket(const char *destination);
238 void connect_to_remote(asocket *s, const char *destination);
  /external/libnfc-nxp/src/
phHciNfc_Pipe.c 123 phHciNfc_Gate_Info_t *destination,
136 * This function creates the pipe between a source host's gate and destination
146 phHciNfc_Gate_Info_t *destination,
160 /* The Source Gate is same as the Destination Gate */
162 ((phHciNfc_Gate_Info_t *)destination)->gate_id;
164 ((phHciNfc_Gate_Info_t *)destination)->host_id;
166 ((phHciNfc_Gate_Info_t *)destination)->gate_id;
212 /* The Source Gate is same as the Destination Gate */
276 * destination host's gate
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/xbios/
SDL_xbios.c 734 void *source,*destination; local
747 destination = XBIOS_screens[XBIOS_fbnum];
748 destination += XBIOS_pitch * rects[i].y;
749 destination += x1;
754 destination,
783 /* Center on destination screen */
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppNotification.java 124 String destination; // destination associated with this transfer field in class:BluetoothOppNotification.NotificationItem
237 final int destinationIndex = cursor.getColumnIndexOrThrow(BluetoothShare.DESTINATION);
248 String destination = cursor.getString(destinationIndex); local
280 item.destination = destination;
310 intent.putExtra(Constants.EXTRA_BT_OPP_ADDRESS, item.destination);

Completed in 2475 milliseconds

1 2 3 4 5 6 78 91011>>