Home
last modified time | relevance | path

Searched refs:evp (Results 1 – 12 of 12) sorted by relevance

/kernel/linux/linux-5.10/tools/perf/util/
Ds390-sample-raw.c143 struct pmu_event *evp = map->table; in get_counter_name() local
145 for (; evp->name || evp->event || evp->desc; ++evp) { in get_counter_name()
146 if (evp->name == NULL || evp->event == NULL) in get_counter_name()
148 rc = sscanf(evp->event, "event=%x", &event_nr); in get_counter_name()
150 return evp->name; in get_counter_name()
/kernel/linux/linux-5.10/arch/arm64/boot/dts/amazon/
DMakefile2 dtb-$(CONFIG_ARCH_ALPINE) += alpine-v2-evp.dtb
3 dtb-$(CONFIG_ARCH_ALPINE) += alpine-v3-evp.dtb
Dalpine-v3-evp.dts10 compatible = "amazon,al-alpine-v3-evp", "amazon,al-alpine-v3";
Dalpine-v2-evp.dts39 compatible = "al,alpine-v2-evp", "al,alpine-v2";
/kernel/liteos_a/compat/posix/src/
Dtime.c775 int timer_create(clockid_t clockID, struct sigevent *restrict evp, timer_t *restrict timerID) in timer_create() argument
783 if (!timerID || (clockID != CLOCK_REALTIME) || !evp) { in timer_create()
788 if ((evp->sigev_notify != SIGEV_THREAD) || evp->sigev_notify_attributes) { in timer_create()
793 ret = LOS_SwtmrCreate(1, LOS_SWTMR_MODE_ONCE, (SWTMR_PROC_FUNC)evp->sigev_notify_function, in timer_create()
794 &swtmrID, (UINTPTR)evp->sigev_value.sival_ptr); in timer_create()
812 int OsTimerCreate(clockid_t clockID, struct ksigevent *evp, timer_t *timerID) in OsTimerCreate() argument
827 signo = evp ? evp->sigev_signo : SIGALRM; in OsTimerCreate()
832 if (evp && (evp->sigev_notify != SIGEV_SIGNAL && evp->sigev_notify != SIGEV_THREAD_ID)) { in OsTimerCreate()
843 arg->tid = evp ? evp->sigev_tid : 0; in OsTimerCreate()
846 arg->sigev_value.sival_ptr = evp ? evp->sigev_value.sival_ptr : NULL; in OsTimerCreate()
/kernel/linux/linux-5.10/net/sctp/
Dstream.c521 struct sctp_ulpevent **evp) in sctp_process_strreset_outreq() argument
598 *evp = sctp_ulpevent_make_stream_reset_event(asoc, in sctp_process_strreset_outreq()
610 struct sctp_ulpevent **evp) in sctp_process_strreset_inreq() argument
687 struct sctp_ulpevent **evp) in sctp_process_strreset_tsnreq() argument
771 *evp = sctp_ulpevent_make_assoc_reset_event(asoc, 0, init_tsn, in sctp_process_strreset_tsnreq()
784 struct sctp_ulpevent **evp) in sctp_process_strreset_addstrm_out() argument
842 *evp = sctp_ulpevent_make_stream_change_event(asoc, in sctp_process_strreset_addstrm_out()
854 struct sctp_ulpevent **evp) in sctp_process_strreset_addstrm_in() argument
919 struct sctp_ulpevent **evp) in sctp_process_strreset_resp() argument
974 *evp = sctp_ulpevent_make_stream_reset_event(asoc, flags, in sctp_process_strreset_resp()
[all …]
/kernel/linux/linux-5.10/include/net/sctp/
Dsm.h277 struct sctp_ulpevent **evp);
281 struct sctp_ulpevent **evp);
285 struct sctp_ulpevent **evp);
289 struct sctp_ulpevent **evp);
293 struct sctp_ulpevent **evp);
297 struct sctp_ulpevent **evp);
/kernel/liteos_m/kal/posix/src/
Dtime.c132 int timer_create(clockid_t clockID, struct sigevent *restrict evp, timer_t *restrict timerID) in timer_create() argument
137 if (!timerID || (clockID != CLOCK_REALTIME) || !evp) { in timer_create()
142 if ((evp->sigev_notify != SIGEV_THREAD) || evp->sigev_notify_attributes) { in timer_create()
147 ret = LOS_SwtmrCreate(1, LOS_SWTMR_MODE_ONCE, (SWTMR_PROC_FUNC)evp->sigev_notify_function, in timer_create()
148 &swtmrID, (UINT32)(UINTPTR)evp->sigev_value.sival_ptr in timer_create()
/kernel/liteos_a/syscall/
Dtime_syscall.c160 int SysTimerCreate(clockid_t clockID, struct ksigevent *evp, timer_t *timerID) in SysTimerCreate() argument
171 if (evp && LOS_ArchCopyFromUser(&ksevp, evp, sizeof(struct ksigevent))) { in SysTimerCreate()
176 ret = OsTimerCreate(clockID, evp ? &ksevp : NULL, &stimerID); in SysTimerCreate()
Dlos_syscall.h188 extern int SysTimerCreate(clockid_t clockID, struct ksigevent *evp, timer_t *timerID);
/kernel/linux/linux-5.10/arch/sh/kernel/
Dperf_event.c91 static int hw_perf_cache_event(int config, int *evp) in hw_perf_cache_event() argument
114 *evp = ev; in hw_perf_cache_event()
/kernel/linux/linux-5.10/drivers/media/i2c/m5mols/
Dm5mols_controls.c390 unsigned int evp = val ? 0xe : 0x0; in m5mols_set_stabilization() local
393 ret = m5mols_write(sd, AE_EV_PRESET_MONITOR, evp); in m5mols_set_stabilization()
397 return m5mols_write(sd, AE_EV_PRESET_CAPTURE, evp); in m5mols_set_stabilization()