Home
last modified time | relevance | path

Searched refs:old (Results 1 – 25 of 32) sorted by relevance

12

/components/libc/posix/signal/
A Dposix_signal.c138 rt_sighandler_t old = RT_NULL; in sigaction() local
143 old = rt_signal_install(signum, act->sa_handler); in sigaction()
146 old = rt_signal_install(signum, RT_NULL); in sigaction()
147 rt_signal_install(signum, old); in sigaction()
151 oldact->sa_handler = old; in sigaction()
/components/net/lwip/lwip-1.4.1/src/netif/ppp/
A Dipcp.c309 #define LENCIVJ(neg, old) (neg ? (old? CILEN_COMPRESS : CILEN_VJ) : 0) in ipcp_cilen() argument
310 #define LENCIADDR(neg, old) (neg ? (old? CILEN_ADDRS : CILEN_ADDR) : 0) in ipcp_cilen() argument
360 if (!old) { \ in ipcp_addci()
370 #define ADDCIADDR(opt, neg, old, val1, val2) \ in ipcp_addci() argument
379 if (old) { \ in ipcp_addci()
454 if (!old) { \ in ipcp_ackci()
484 if (old) { \ in ipcp_ackci()
563 #define NAKCIADDR(opt, neg, old, code) \ in ipcp_nakci() argument
572 if (old) { \ in ipcp_nakci()
778 if (old) { \ in ipcp_rejci()
[all …]
/components/legacy/fdt/libfdt/
A Dfdt_rw.c393 static void _fdt_packblocks(const char *old, char *new, in _fdt_packblocks() argument
402 memmove(new + mem_rsv_off, old + fdt_off_mem_rsvmap(old), mem_rsv_size); in _fdt_packblocks()
405 memmove(new + struct_off, old + fdt_off_dt_struct(old), struct_size); in _fdt_packblocks()
409 memmove(new + strings_off, old + fdt_off_dt_strings(old), in _fdt_packblocks()
410 fdt_size_dt_strings(old)); in _fdt_packblocks()
412 fdt_set_size_dt_strings(new, fdt_size_dt_strings(old)); in _fdt_packblocks()
/components/libc/compilers/newlib/
A Dsyscalls.c49 void *_realloc_r(struct _reent *ptr, void *old, size_t newlen) in _realloc_r() argument
53 result = (void*)rt_realloc(old, newlen); in _realloc_r()
161 int _link_r(struct _reent *ptr, const char *old, const char *new) in _link_r() argument
255 int _rename_r(struct _reent *ptr, const char *old, const char *new) in _rename_r() argument
259 rc = rename(old, new); in _rename_r()
/components/lwp/
A Dlwp_itimer.c27 …er(rt_lwp_t lwp, int which, const struct itimerspec *restrict new, struct itimerspec *restrict old) in lwp_signal_setitimer() argument
61 rc = timer_settime(timerid, flags, new, old); in lwp_signal_setitimer()
A Dlwp_signal.h228 struct itimerspec *restrict old);
A Dlwp_syscall.c9328 …et_t sys_mq_getsetattr(mqd_t mqd, const struct mq_attr *restrict new, struct mq_attr *restrict old) in sys_mq_getsetattr() argument
9346 if (!lwp_user_accessable((void *)old, size)) in sys_mq_getsetattr()
9352 lwp_get_from_user(kold, (void *)old, size); in sys_mq_getsetattr()
9355 lwp_put_to_user(old, kold, size); in sys_mq_getsetattr()
9368 ret = mq_setattr(mqd, new, old); in sys_mq_getsetattr()
10673 …sret_t sys_timerfd_settime(int fd, int flags, const struct itimerspec *new, struct itimerspec *old) in sys_timerfd_settime() argument
10693 if (old) in sys_timerfd_settime()
10695 if (!lwp_user_accessable((void *)old, sizeof(struct itimerspec))) in sys_timerfd_settime()
10711 if (old) in sys_timerfd_settime()
10713 lwp_put_to_user(old, kold, sizeof(*kold)); in sys_timerfd_settime()
[all …]
/components/libc/posix/io/timerfd/
A Dtimerfd.c363 …tic int timerfd_do_settime(int fd, int flags, const struct itimerspec *new, struct itimerspec *old) in timerfd_do_settime() argument
392 if (old) in timerfd_do_settime()
394 old->it_interval.tv_nsec = tfd->ittimer.it_interval.tv_nsec; in timerfd_do_settime()
395 old->it_interval.tv_sec = tfd->ittimer.it_interval.tv_sec; in timerfd_do_settime()
396 old->it_value.tv_nsec = tfd->ittimer.it_value.tv_nsec; in timerfd_do_settime()
397 old->it_value.tv_sec = tfd->ittimer.it_value.tv_sec; in timerfd_do_settime()
616 int timerfd_settime(int fd, int flags, const struct itimerspec *new, struct itimerspec *old) in timerfd_settime() argument
618 return timerfd_do_settime(fd, flags, new, old); in timerfd_settime()
/components/drivers/ofw/libfdt/
A Dfdt_rw.c396 static void fdt_packblocks_(const char *old, char *new, in fdt_packblocks_() argument
407 memmove(new + mem_rsv_off, old + fdt_off_mem_rsvmap(old), mem_rsv_size); in fdt_packblocks_()
410 memmove(new + struct_off, old + fdt_off_dt_struct(old), struct_size); in fdt_packblocks_()
414 memmove(new + strings_off, old + fdt_off_dt_strings(old), strings_size); in fdt_packblocks_()
416 fdt_set_size_dt_strings(new, fdt_size_dt_strings(old)); in fdt_packblocks_()
/components/drivers/rtc/
A Ddev_rtc.c308 time_t old = (time_t)0; in date() local
348 err = get_timestamp(&old); in date()
363 rt_kprintf("old: %.*s", 25, ctime(&old)); in date()
/components/lwp/terminal/freebsd/
A Dtty.c622 struct termios *old = &tp->t_termios; in ttydev_ioctl() local
633 (old->c_iflag & lock->c_iflag) | (new->c_iflag & ~lock->c_iflag); in ttydev_ioctl()
635 (old->c_oflag & lock->c_oflag) | (new->c_oflag & ~lock->c_oflag); in ttydev_ioctl()
637 (old->c_cflag & lock->c_cflag) | (new->c_cflag & ~lock->c_cflag); in ttydev_ioctl()
639 (old->c_lflag & lock->c_lflag) | (new->c_lflag & ~lock->c_lflag); in ttydev_ioctl()
642 new->c_cc[cc] = old->c_cc[cc]; in ttydev_ioctl()
644 new->__c_ispeed = old->__c_ispeed; in ttydev_ioctl()
646 new->__c_ospeed = old->__c_ospeed; in ttydev_ioctl()
/components/drivers/serial/
A DKconfig24 bool "overwrite old data when the buffer is full"
/components/net/lwip/lwip-2.1.2/src/netif/ppp/
A Dipcp.c756 #define LENCIVJ(neg, old) (neg ? (old? CILEN_COMPRESS : CILEN_VJ) : 0) in ipcp_cilen() argument
827 #define ADDCIVJ(opt, neg, val, old, maxslotindex, cflag) \ in ipcp_addci() argument
829 int vjlen = old? CILEN_COMPRESS : CILEN_VJ; \ in ipcp_addci()
834 if (!old) { \ in ipcp_addci()
958 #define ACKCIVJ(opt, neg, val, old, maxslotindex, cflag) \ in ipcp_ackci() argument
960 int vjlen = old? CILEN_COMPRESS : CILEN_VJ; \ in ipcp_ackci()
971 if (!old) { \ in ipcp_ackci()
1380 #define REJCIVJ(opt, neg, val, old, maxslot, cflag) \ in ipcp_rejci() argument
1382 p[1] == (old? CILEN_COMPRESS : CILEN_VJ) && \ in ipcp_rejci()
1391 if (!old) { \ in ipcp_rejci()
A DPPPD_FOLLOWUP109 2012-05-20 - Remove old version of Linux if_pppol2tp.h
/components/net/lwip/lwip-2.0.3/src/netif/ppp/
A Dipcp.c756 #define LENCIVJ(neg, old) (neg ? (old? CILEN_COMPRESS : CILEN_VJ) : 0) in ipcp_cilen() argument
827 #define ADDCIVJ(opt, neg, val, old, maxslotindex, cflag) \ in ipcp_addci() argument
829 int vjlen = old? CILEN_COMPRESS : CILEN_VJ; \ in ipcp_addci()
834 if (!old) { \ in ipcp_addci()
958 #define ACKCIVJ(opt, neg, val, old, maxslotindex, cflag) \ in ipcp_ackci() argument
960 int vjlen = old? CILEN_COMPRESS : CILEN_VJ; \ in ipcp_ackci()
971 if (!old) { \ in ipcp_ackci()
1380 #define REJCIVJ(opt, neg, val, old, maxslot, cflag) \ in ipcp_rejci() argument
1382 p[1] == (old? CILEN_COMPRESS : CILEN_VJ) && \ in ipcp_rejci()
1391 if (!old) { \ in ipcp_rejci()
A DPPPD_FOLLOWUP109 2012-05-20 - Remove old version of Linux if_pppol2tp.h
/components/libc/cplusplus/
A DREADME.md20 /* old GCC version uses .ctors */
/components/net/lwip/lwip-2.0.3/src/core/ipv4/
A Detharp.c1052 struct etharp_q_entry *old; local
1053 old = arp_table[i].q;
1055 pbuf_free(old->p);
1056 memp_free(MEMP_ARP_QUEUE, old);
/components/net/lwip/lwip-2.1.2/src/core/ipv4/
A Detharp.c1051 struct etharp_q_entry *old; local
1052 old = arp_table[i].q;
1054 pbuf_free(old->p);
1055 memp_free(MEMP_ARP_QUEUE, old);
/components/net/lwip/lwip-1.4.1/
A DUPGRADING14 compatibility to old applications, but will be removed in the future).
/components/lwp/arch/arm/cortex-a/
A Dlwp_gcc.S429 ldmia r0, {r4, r5} @ load old val
/components/net/lwip/lwip-1.4.1/doc/
A Dsnmp_agent.txt13 This is an old(er) standard but is still widely supported.
/components/net/lwip/lwip-2.0.3/
A DUPGRADING113 compatibility to old applications, but will be removed in the future).
/components/dfs/dfs_v1/filesystems/elmfat/
A D00history.txt344 Fixed old floppy disks formatted with MS-DOS 2.x and 3.x cannot be mounted.
/components/net/lwip/lwip-2.1.2/
A DUPGRADING148 compatibility to old applications, but will be removed in the future).

Completed in 51 milliseconds

12