/external/elfutils/libelf/ |
gelf_getverdef.c | 63 gelf_getverdef (data, offset, dst) 64 Elf_Data *data; 70 if (data == NULL) 73 if (unlikely (data->d_type != ELF_T_VDEF)) 84 rwlock_rdlock (((Elf_Data_Scn *) data)->s->elf->lock); 86 /* The data is already in the correct form. Just make sure the 89 || unlikely (offset + sizeof (GElf_Verdef) > data->d_size) 96 result = (GElf_Verdef *) memcpy (dst, (char *) data->d_buf + offset, 99 rwlock_unlock (((Elf_Data_Scn *) data)->s->elf->lock);
|
gelf_getvernaux.c | 63 gelf_getvernaux (data, offset, dst) 64 Elf_Data *data; 70 if (data == NULL) 73 if (unlikely (data->d_type != ELF_T_VNEED)) 87 rwlock_rdlock (((Elf_Data_Scn *) data)->s->elf->lock); 89 /* The data is already in the correct form. Just make sure the 92 || unlikely (offset + sizeof (GElf_Vernaux) > data->d_size) 99 result = (GElf_Vernaux *) memcpy (dst, (char *) data->d_buf + offset, 102 rwlock_unlock (((Elf_Data_Scn *) data)->s->elf->lock);
|
gelf_getverneed.c | 63 gelf_getverneed (data, offset, dst) 64 Elf_Data *data; 70 if (data == NULL) 73 if (unlikely (data->d_type != ELF_T_VNEED)) 87 rwlock_rdlock (((Elf_Data_Scn *) data)->s->elf->lock); 89 /* The data is already in the correct form. Just make sure the 92 || unlikely (offset + sizeof (GElf_Verneed) > data->d_size) 99 result = (GElf_Verneed *) memcpy (dst, (char *) data->d_buf + offset, 102 rwlock_unlock (((Elf_Data_Scn *) data)->s->elf->lock);
|
/external/icu4c/tools/icuinfo/ |
testplug.c | 30 #define DECLARE_PLUGIN(x) U_CAPI UPlugTokenReturn U_EXPORT2 x (UPlugData *data, UPlugReason reason, UErrorCode *status) 46 UPlugData *data, 50 fprintf(stderr,"MyPlugin: data=%p, reason=%s, status=%s\n", (void*)data, udbg_enumName(UDBG_UPlugReason,(int32_t)reason), u_errorName(*status)); 53 uplug_setPlugName(data, "Just a Test High-Level Plugin"); /* This call is optional in response to UPLUG_REASON_QUERY, but is a good idea. */ 54 uplug_setPlugLevel(data, UPLUG_LEVEL_HIGH); /* This call is Mandatory in response to UPLUG_REASON_QUERY */ 63 UPlugData *data, 66 fprintf(stderr,"MyPluginLow: data=%p, reason=%s, status=%s\n", (void*)data, udbg_enumName(UDBG_UPlugReason,(int32_t)reason), u_errorName(*status)); 69 uplug_setPlugName(data, "Low Plugin") [all...] |
/external/kernel-headers/original/asm-mips/mach-ip22/ |
ds1286.h | 16 #define rtc_write(data, reg) do { hpc3c0->rtcregs[(reg)] = (data); } while(0)
|
/external/llvm/test/MC/ELF/ |
elf_directive_section.s | 6 .data.rel.ro 7 # CHECK: .data.rel.ro 9 .data.rel 10 # CHECK: .data.rel
|
/external/llvm/test/MC/MachO/ |
zerofill-1.s | 1 // RUN: llvm-mc -triple i386-apple-darwin9 %s -filetype=obj -o - | macho-dump --dump-section-data | FileCheck %s 8 .data
|
/external/smack/src/org/xbill/DNS/ |
NSIDOption.java | 22 * @param data The contents of the option. 25 NSIDOption(byte [] data) { 26 super(EDNSOption.Code.NSID, data);
|
/external/srec/portable/include/ |
pcrc.h | 35 * Computes the CRC-encoding of the block of data. 37 * @param data The data on which to compute the CRC 38 * @param size the size of the data. 39 * @return the CRC of the data. 41 PORTABLE_API unsigned int pcrcComputeData(const void *data, unsigned int size); 63 * @param data datum to append to the crc 64 * @param size the size of the data. 68 const void * data,
|
/external/srec/shared/include/ |
ESR_SessionTypeListener.h | 51 * @param data User-data passed to listener. 54 const void* oldValue, const void* newValue, VariableTypes variableType, void* data); 60 * Associates a ESR_SessionTypeListener with user-data. 69 * User-data to pass to listener. 71 void* data; member in struct:ESR_SessionTypeListenerPair_t
|
/external/srec/srec/ca/ |
ann_api.c | 54 hAnnotation->data = allocate_annotation(); 58 hAnnotation->data->snr = 0; 79 free_annotation(hAnnotation->data); 99 annotation_delete_segment_info(hAnnotation->data); 126 seg_cnt = annotation_from_results(hAnnotation->data, &hRecog->rec); 128 if (hAnnotation->data->numWords > 0) 130 annotation_decorate_labels(hAnnotation->data, hAnnotation->label); 134 return (hAnnotation->data->numWords); 157 annotation_from_voicing(hAnnotation->data, &hUtterance->data, hPattern->data.prep) [all...] |
/frameworks/base/core/java/android/app/backup/ |
BackupHelper.java | 28 * is responsible only for handling its own data, and will not see entities 41 * application's data directory need to be backed up, write them to 42 * <code>data</code>, and fill in <code>newState</code> with the state as it 48 * {@code oldState} descriptor points to the beginning of the state data 60 * @param data An open, read/write {@link BackupDataOutput} 61 * pointing to the backup data destination. 66 * state here after writing the requested data to the <code>data</code> 69 public void performBackup(ParcelFileDescriptor oldState, BackupDataOutput data, 74 * to restore a single entity from the restore data set. This method will b [all...] |
/frameworks/base/libs/storage/ |
IMountServiceListener.cpp | 28 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) 32 CHECK_INTERFACE(IMountServiceListener, data, reply); 33 bool connected = (data.readInt32() != 0); 39 CHECK_INTERFACE(IMountServiceListener, data, reply); 40 String16 path = data.readString16(); 41 String16 oldState = data.readString16(); 42 String16 newState = data.readString16(); 48 return BBinder::onTransact(code, data, reply, flags);
|
/frameworks/compile/mclinker/lib/ADT/ |
StringEntry.cpp | 32 free(const_cast<char*>(m_Value.data())); 37 char* data = (char*)malloc(pVal.size()+1); local 38 strcpy(data, pVal.data()); 39 m_Value = llvm::StringRef(data, pVal.size()); 45 char* data = (char*)malloc(length+1); local 46 strcpy(data, pVal); 47 m_Value = llvm::StringRef(data, length);
|
/frameworks/native/libs/gui/ |
ISensorEventConnection.cpp | 50 Parcel data, reply; local 51 data.writeInterfaceToken(ISensorEventConnection::getInterfaceDescriptor()); 52 remote()->transact(GET_SENSOR_CHANNEL, data, &reply); 59 Parcel data, reply; local 60 data.writeInterfaceToken(ISensorEventConnection::getInterfaceDescriptor()); 61 data.writeInt32(handle); 62 data.writeInt32(enabled); 63 data.writeInt64(samplingPeriodNs); 64 data.writeInt64(maxBatchReportLatencyNs); 65 data.writeInt32(reservedFlags) 72 Parcel data, reply; local 81 Parcel data, reply; local [all...] |
/hardware/libhardware_legacy/include/hardware_legacy/ |
uevent.h | 27 int uevent_add_native_handler(void (*handler)(void *data, const char *msg, int msg_len), 29 int uevent_remove_native_handler(void (*handler)(void *data, const char *msg, int msg_len));
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.collate/locale.collate/locale.collate.members/ |
hash.pass.cpp | 29 assert(f.hash(x1.data(), x1.data() + x1.size()) 30 != f.hash(x2.data(), x2.data() + x2.size())); 36 assert(f.hash(x1.data(), x1.data() + x1.size()) 37 != f.hash(x2.data(), x2.data() + x2.size()));
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.collate/locale.collate.byname/ |
hash.pass.cpp | 31 assert(f.hash(x1.data(), x1.data() + x1.size()) 32 != f.hash(x2.data(), x2.data() + x2.size())); 38 assert(f.hash(x1.data(), x1.data() + x1.size()) 39 != f.hash(x2.data(), x2.data() + x2.size()));
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/ |
EndianUtils.java | 114 * @param data target byte array
118 public static void writeSwappedShort(byte[] data, int offset, short value) {
119 data[ offset + 0 ] = (byte)( ( value >> 0 ) & 0xff );
120 data[ offset + 1 ] = (byte)( ( value >> 8 ) & 0xff );
126 * @param data source byte array
130 public static short readSwappedShort(byte[] data, int offset) {
131 return (short)( ( ( data[ offset + 0 ] & 0xff ) << 0 ) +
132 ( ( data[ offset + 1 ] & 0xff ) << 8 ) );
139 * @param data source byte array
143 public static int readSwappedUnsignedShort(byte[] data, int offset) { [all...] |
/prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/mach-ip22/ |
ds1286.h | 24 #define rtc_write(data, reg) do { hpc3c0->rtcregs[(reg)] = (data); } while(0)
|
/prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm/mach-ip22/ |
ds1286.h | 24 #define rtc_write(data, reg) do { hpc3c0->rtcregs[(reg)] = (data); } while(0)
|
/prebuilts/ndk/9/platforms/android-14/arch-mips/usr/include/asm/mach-ip22/ |
ds1286.h | 24 #define rtc_write(data, reg) do { hpc3c0->rtcregs[(reg)] = (data); } while(0)
|
/prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/asm/mach-ip22/ |
ds1286.h | 24 #define rtc_write(data, reg) do { hpc3c0->rtcregs[(reg)] = (data); } while(0)
|
/prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/asm/mach-ip22/ |
ds1286.h | 24 #define rtc_write(data, reg) do { hpc3c0->rtcregs[(reg)] = (data); } while(0)
|
/system/core/libcorkscrew/arch-mips/ |
ptrace-mips.c | 24 void load_ptrace_map_info_data_arch(pid_t pid, map_info_t* mi, map_info_data_t* data) { 27 void free_ptrace_map_info_data_arch(map_info_t* mi, map_info_data_t* data) {
|