Searched refs:data (Results 1 - 25 of 94) sorted by relevance

1234

/bionic/libc/unistd/
H A Dsyslog.c96 syslog_r(int pri, struct syslog_data *data, const char *fmt, ...) argument
101 vsyslog_r(pri, data, fmt, ap);
106 vsyslog_r(int pri, struct syslog_data *data, const char *fmt, va_list ap) argument
120 if (data == &sdata) {
124 syslog_r(INTERNALLOG, data,
131 if (!(LOG_MASK(LOG_PRI(pri)) & data->log_mask))
138 pri |= data->log_fac;
141 if (data == &sdata)
164 if (data == &sdata) {
169 if (data
287 disconnectlog_r(struct syslog_data *data) argument
302 connectlog_r(struct syslog_data *data) argument
335 openlog_r(const char *ident, int logstat, int logfac, struct syslog_data *data) argument
350 closelog_r(struct syslog_data *data) argument
360 setlogmask_r(int pmask, struct syslog_data *data) argument
[all...]
/bionic/libc/kernel/arch-mips/asm/mach-ip22/
H A Dds1286.h24 #define rtc_write(data, reg) do { hpc3c0->rtcregs[(reg)] = (data); } while(0)
/bionic/libc/bionic/
H A Dptrace.c31 extern long __ptrace(int request, pid_t pid, void *addr, void *data);
33 long ptrace(int request, pid_t pid, void * addr, void * data) argument
53 return __ptrace(request, pid, addr, data);
H A Dmalloc_debug_check_mapinfo.cpp66 char data[1024]; // Used to read lines as well as to construct the filename. local
67 snprintf(data, sizeof(data), "/proc/%d/maps", pid);
68 FILE *fp = fopen(data, "r");
70 while (fgets(data, sizeof(data), fp)) {
71 mapinfo *mi = parse_maps_line(data);
H A Ddl_iterate_phdr_static.c36 * code/data.
46 dl_iterate_phdr(int (*cb)(struct dl_phdr_info *info, size_t size, void *data), argument
47 void *data)
64 return cb(&dl_info, sizeof (struct dl_phdr_info), data);
/bionic/libc/kernel/common/linux/
H A Dioprio.h29 #define IOPRIO_PRIO_VALUE(class, data) (((class) << IOPRIO_CLASS_SHIFT) | data)
H A Dplatform_device.h44 #define platform_set_drvdata(_dev,data) dev_set_drvdata(&(_dev)->dev, (data))
H A Dtimer.h31 unsigned long data; member in struct:timer_list
35 #define TIMER_INITIALIZER(_function, _expires, _data) { .function = (_function), .expires = (_expires), .data = (_data), .base = &boot_tvec_bases, }
H A Dblkpg.h30 void __user *data; member in struct:blkpg_ioctl_arg
H A Dinterrupt.h105 void *data; member in struct:softirq_action
116 unsigned long data; member in struct:tasklet_struct
119 #define DECLARE_TASKLET(name, func, data) struct tasklet_struct name = { NULL, 0, ATOMIC_INIT(0), func, data }
120 #define DECLARE_TASKLET_DISABLED(name, func, data) struct tasklet_struct name = { NULL, 0, ATOMIC_INIT(1), func, data }
H A Dmsm_adsp.h29 uint8_t *data; member in struct:adsp_command_t
39 uint8_t *data; member in struct:adsp_event_t
H A Dublock.h74 __u8 data[]; member in struct:ublock_read_out
80 __u8 data[]; member in struct:ublock_write_in
H A Drpmsg_omx.h41 uint32_t data[0]; member in struct:omx_packet
H A Dproc_fs.h34 int count, int *eof, void *data);
36 unsigned long count, void *data);
56 void *data; member in struct:proc_dir_entry
H A Duhid.h64 __u8 data[UHID_DATA_MAX]; member in struct:uhid_input_req
69 __u8 data[UHID_DATA_MAX]; member in struct:uhid_output_req
91 __u8 data[UHID_DATA_MAX]; member in struct:uhid_feature_answer_req
H A Dworkqueue.h31 void *data; member in struct:work_struct
40 #define __WORK_INITIALIZER(n, f, d) { .entry = { &(n).entry, &(n).entry }, .func = (f), .data = (d), .timer = TIMER_INITIALIZER(NULL, 0, 0), }
42 #define PREPARE_WORK(_work, _func, _data) do { (_work)->func = _func; (_work)->data = _data; } while (0)
/bionic/libdl/
H A Dlibdl.c32 int dl_iterate_phdr(int (*cb)(void *info, void *size, void *data), argument
33 void *data) { return 0; }
/bionic/libc/tools/zoneinfo/
H A DZoneInfo.java42 private static String nullName(byte[] data, int where, int off) { argument
47 while (end < data.length && data[end] != '\0')
50 return new String(data, where + off, end - (where + off));
53 public static ZoneInfo make(String name, byte[] data) { argument
54 int ntransition = read4(data, 32);
55 int ngmtoff = read4(data, 36);
60 transitions[i] = read4(data, base + 4 * i);
65 type[i] = data[base + i];
72 gmtoff[i] = read4(data, bas
82 read4(byte[] data, int off) argument
89 ZoneInfo(String name, int[] transitions, byte[] type, int[] gmtoff, byte[] isdst, byte[] abbrev, byte[] data, int abbrevoff) argument
[all...]
/bionic/libc/kernel/common/linux/sunrpc/
H A Dgss_asn1.h42 #define g_OID_equal(o1,o2) (((o1)->len == (o2)->len) && (memcmp((o1)->data,(o2)->data,(int) (o1)->len) == 0))
/bionic/libc/arch-mips/bionic/
H A D__dso_handle_so.S33 .data
/bionic/libc/arch-x86/bionic/
H A D__dso_handle_so.S33 .data
/bionic/libc/include/sys/
H A Dptrace.h41 extern long ptrace(int request, pid_t pid, void *addr, void *data);
/bionic/libc/kernel/arch-arm/asm/arch/
H A Dgpio-switch.h37 void (* notify)(void *data, int state);
H A Dboard.h72 int (*power_on)(void * data);
74 int (*power_off)(void * data);
144 u8 data[0]; member in struct:omap_board_config_entry
149 const void *data; member in struct:omap_board_config_kernel
/bionic/libc/kernel/common/linux/usb/
H A Df_mtp.h32 void *data; member in struct:mtp_event

Completed in 977 milliseconds

1234