Home
last modified time | relevance | path

Searched refs:prot (Results 1 – 9 of 9) sorted by relevance

/AliOS-Things-master/components/py_engine/engine/shared/netutils/
A Dtrace.c78 uint8_t prot = buf[9]; in netutils_ethernet_trace() local
81 if (prot == 6) { in netutils_ethernet_trace()
100 } else if (prot == 17) { in netutils_ethernet_trace()
148 mp_printf(print, " prot=%u", prot); in netutils_ethernet_trace()
/AliOS-Things-master/components/posix/include/sys/
A Dmman.h15 void *mmap(void *addr, size_t length, int prot, int flags, int fd, off_t offset);
/AliOS-Things-master/components/littlevgl/src/lv_core/
A Dlv_obj.h535 void lv_obj_set_protect(lv_obj_t * obj, uint8_t prot);
542 void lv_obj_clear_protect(lv_obj_t * obj, uint8_t prot);
879 bool lv_obj_is_protected(const lv_obj_t * obj, uint8_t prot);
A Dlv_obj.c1298 void lv_obj_set_protect(lv_obj_t * obj, uint8_t prot) in lv_obj_set_protect() argument
1300 obj->protect |= prot; in lv_obj_set_protect()
1308 void lv_obj_clear_protect(lv_obj_t * obj, uint8_t prot) in lv_obj_clear_protect() argument
1310 prot = (~prot) & 0xFF; in lv_obj_clear_protect()
1311 obj->protect &= prot; in lv_obj_clear_protect()
1977 bool lv_obj_is_protected(const lv_obj_t * obj, uint8_t prot)
1979 return (obj->protect & prot) == 0 ? false : true;
/AliOS-Things-master/components/vfs/include/
A Dvfs_api.h170 void *vfs_mmap(void *start, size_t len, int prot, int flags, int fd, off_t offset);
A Dvfs_types.h99 void* (*mmap)(vfs_file_t *fp, void *addr, size_t length, int prot, int flags,
/AliOS-Things-master/components/lwip/lwip2.0.0/netif/ppp/
A Dlcp.c565 u_short prot; in lcp_rprotrej() local
575 GETSHORT(prot, inp); in lcp_rprotrej()
587 pname = protocol_name(prot); in lcp_rprotrej()
594 if (protp->protocol == prot) { in lcp_rprotrej()
598 prot); in lcp_rprotrej()
601 ppp_dbglog("Protocol-Reject for 0x%x received", prot); in lcp_rprotrej()
609 prot); in lcp_rprotrej()
612 ppp_warn("Protocol-Reject for unsupported protocol 0x%x", prot); in lcp_rprotrej()
A Dauth.c1138 const char *prot = ""; in auth_withpeer_success() local
1144 prot = "CHAP"; in auth_withpeer_success()
1165 prot = "PAP"; in auth_withpeer_success()
1171 prot = "EAP"; in auth_withpeer_success()
1180 ppp_notice("%s authentication succeeded", prot); in auth_withpeer_success()
/AliOS-Things-master/components/vfs/
A Dvfs.c876 void *vfs_mmap(void *start, size_t len, int prot, int flags, int fd, off_t offset) in vfs_mmap() argument
903 ret = (node->ops.i_ops->mmap)(f, start, len, prot, flags, fd, offset); in vfs_mmap()

Completed in 19 milliseconds