| /components/libc/posix/libdl/ |
| A D | dlmodule.c | 40 struct rt_object *object; in _dlmodule_set_name() local 43 object = &(module->parent); in _dlmodule_set_name() 60 rt_strncpy(object->name, first, size); in _dlmodule_set_name() 61 object->name[size] = '\0'; in _dlmodule_set_name() 115 struct rt_object *object = RT_NULL; in _dlmodule_exit() local 273 struct rt_object *object = RT_NULL; in dlmodule_destroy() local 316 rt_mq_detach((rt_mq_t)object); in dlmodule_destroy() 366 rt_mq_delete((rt_mq_t)object); in dlmodule_destroy() 889 rt_object_t object; in dlmodule_find() local 893 if (object) in dlmodule_find() [all …]
|
| /components/libc/posix/tls/ |
| A D | emutls.c | 55 } object; member 67 char *object; in emutls_memalign_alloc() local 68 if ((object = (char *)malloc(EXTRA_ALIGN_PTR_BYTES + size)) == NULL) in emutls_memalign_alloc() 70 base = (void *)(((uintptr_t)(object + EXTRA_ALIGN_PTR_BYTES)) & ~(uintptr_t)(align - 1)); in emutls_memalign_alloc() 72 ((void **)base)[-1] = object; in emutls_memalign_alloc() 148 uintptr_t index = __atomic_load_n(&control->object.index, __ATOMIC_ACQUIRE); in emutls_get_index() 154 index = control->object.index; in emutls_get_index() 158 __atomic_store_n(&control->object.index, index, __ATOMIC_RELEASE); in emutls_get_index()
|
| /components/lwp/ |
| A D | lwp_pid.c | 322 if (lwp && object) in lwp_user_object_add() 346 rt_object_t object; in _object_node_delete() local 352 object = (rt_object_t)node->avl_key; in _object_node_delete() 353 object->lwp_ref_count--; in _object_node_delete() 354 if (object->lwp_ref_count == 0) in _object_node_delete() 357 switch (object->type) in _object_node_delete() 372 ret = rt_mq_delete((rt_mq_t)object); in _object_node_delete() 398 if (lwp && object) in lwp_user_object_delete() 424 rt_object_t object; in _object_dup() local 427 object = (rt_object_t)node->avl_key; in _object_dup() [all …]
|
| A D | lwp_ipc.c | 179 struct rt_object *object; in rt_raw_channel_open() local 207 object = rt_list_entry(node, struct rt_object, list); in rt_raw_channel_open() 208 if (rt_strncmp(object->name, name, RT_NAME_MAX) == 0) in rt_raw_channel_open() 216 ch = (rt_channel_t)object; in rt_raw_channel_open() 321 ch = (rt_channel_t)object; in wakeup_sender_wait_recv() 353 ch = (rt_channel_t)object; in wakeup_sender_wait_reply() 758 static rt_err_t wakeup_receiver(void *object, struct rt_thread *thread) in wakeup_receiver() argument 764 ch = (rt_channel_t)object; in wakeup_receiver() 1268 struct rt_object *object; in list_channel() local 1303 object = rt_list_entry(node, struct rt_object, list); in list_channel() [all …]
|
| A D | lwp_pid.h | 92 int lwp_user_object_add(struct rt_lwp *lwp, rt_object_t object); 93 rt_err_t lwp_user_object_delete(struct rt_lwp *lwp, rt_object_t object);
|
| A D | lwp_pgrp.c | 101 rt_object_init(&(group->object), RT_Object_Class_ProcessGroup, "pgrp"); in lwp_pgrp_create() 156 rt_object_detach(&(group->object)); in lwp_pgrp_delete() 171 rt_object_detach(&(group->object)); in lwp_pgrp_delete()
|
| A D | lwp.h | 96 struct rt_object object; member 106 struct rt_object object; member
|
| A D | lwp_session.c | 74 rt_object_init(&(session->object), RT_Object_Class_Session, "session"); in lwp_session_create() 133 rt_object_detach(&(session->object)); in lwp_session_delete()
|
| /components/dfs/dfs_v1/filesystems/devfs/ |
| A D | devfs.c | 162 struct rt_object *object; in dfs_device_fs_open() local 200 object = rt_list_entry(node, struct rt_object, list); in dfs_device_fs_open() 201 root_dirent->devices[count] = (rt_device_t)object; in dfs_device_fs_open() 337 rt_object_t object; in dfs_device_fs_getdents() local 352 object = (rt_object_t)root_dirent->devices[root_dirent->read_index + index]; in dfs_device_fs_getdents() 355 if ((((rt_device_t)object)->type) == RT_Device_Class_Bus) in dfs_device_fs_getdents() 365 rt_strncpy(d->d_name, object->name, RT_NAME_MAX); in dfs_device_fs_getdents()
|
| /components/fal/docs/ |
| A D | fal_api_en.md | 12 | return | If the search is successful, the Flash device object will be returned, and if the search… 23 | return | If the search is successful, the Flash partition object will be returned, and if the sea… 57 | part | Partition object | 71 | part | Partition object | 85 | part | Partition object | 98 | part | Partition object |
|
| /components/dfs/dfs_v1/filesystems/nfs/ |
| A D | nfs.x | 219 nfs_fh3 object; member 241 nfs_fh3 object; member 266 nfs_fh3 object; member 283 nfs_fh3 object; member 492 diropargs3 object; member 511 diropargs3 object; member 703 nfs_fh3 object; member
|
| A D | dfs_nfs.c | 273 args.object = *handle; in nfs_get_filesize() 305 args.object = *handle; in nfs_is_directory() 856 args.object = *handle; in nfs_stat() 990 args.object.dir = *handle; in nfs_unlink() 991 args.object.name = strrchr(path, '/') + 1; in nfs_unlink() 992 if (args.object.name == NULL) in nfs_unlink() 994 args.object.name = (char *)path; in nfs_unlink() 1024 args.object.dir = *handle; in nfs_unlink() 1025 args.object.name = strrchr(path, '/') + 1; in nfs_unlink() 1026 if (args.object.name == NULL) in nfs_unlink() [all …]
|
| A D | nfs.h | 279 nfs_fh3 object; member 305 nfs_fh3 object; member 336 nfs_fh3 object; member 357 nfs_fh3 object; member 612 diropargs3 object; member 636 diropargs3 object; member 868 nfs_fh3 object; member
|
| A D | nfs_xdr.c | 476 if (!xdr_nfs_fh3(xdrs, &objp->object)) in xdr_GETATTR3args() 526 if (!xdr_nfs_fh3(xdrs, &objp->object)) in xdr_SETATTR3args() 580 if (!xdr_nfs_fh3(xdrs, &objp->object)) in xdr_LOOKUP3resok() 618 if (!xdr_nfs_fh3(xdrs, &objp->object)) in xdr_ACCESS3args() 1069 if (!xdr_diropargs3(xdrs, &objp->object)) in xdr_REMOVE3args() 1111 if (!xdr_diropargs3(xdrs, &objp->object)) in xdr_RMDIR3args() 1525 if (!xdr_nfs_fh3(xdrs, &objp->object)) in xdr_PATHCONF3args()
|
| /components/libc/posix/ipc/ |
| A D | semaphore.c | 104 rt_object_t object; in posix_sem_find() local 108 object = (rt_object_t)iter->sem; in posix_sem_find() 110 if (strncmp(object->name, name, RT_NAME_MAX) == 0) in posix_sem_find()
|
| /components/drivers/usb/cherryusb/common/ |
| A D | usb_list.h | 146 #define USB_SLIST_OBJECT_INIT(object) \ argument 338 #define USB_DLIST_OBJECT_INIT(object) \ argument 340 &(object), &(object) \
|
| /components/dfs/dfs_v1/filesystems/elmfat/ |
| A D | 00history.txt | 68 Fixed short seek (<= csize) collapses the file object. 151 Moved file lock semaphore table from fs object to the bss. 174 Changed f_open() and f_opendir() reject null object pointer to avoid crash. 206 Fixed f_close() invalidates the file object without volume lock. 215 …Fixed LFN entry is not deleted when delete/rename an object with lossy converted SFN. (appeared at… 276 Fixed wrong object name can be returned when read directory at Unicode cfg. (appeared at R0.12) 320 …Fixed accesing any object on the exFAT root directory beyond the cluster boundary can fail. (appea…
|
| /components/dfs/dfs_v2/filesystems/elmfat/ |
| A D | 00history.txt | 68 Fixed short seek (<= csize) collapses the file object. 151 Moved file lock semaphore table from fs object to the bss. 174 Changed f_open() and f_opendir() reject null object pointer to avoid crash. 206 Fixed f_close() invalidates the file object without volume lock. 215 …Fixed LFN entry is not deleted when delete/rename an object with lossy converted SFN. (appeared at… 276 Fixed wrong object name can be returned when read directory at Unicode cfg. (appeared at R0.12) 320 …Fixed accesing any object on the exFAT root directory beyond the cluster boundary can fail. (appea…
|
| /components/mprotect/ |
| A D | README.md | 150 /* delete thread object */
|
| /components/drivers/sensor/v2/ |
| A D | sensor_cmd.c | 624 struct rt_object *object; in sensor() local 639 object = rt_list_entry(node, struct rt_object, list); in sensor() 640 sensor_dev = (rt_sensor_t)object; in sensor()
|
| /components/drivers/include/drivers/ |
| A D | phy.h | 211 rt_phy_status (*init)(void *object, rt_uint32_t phy_addr, rt_uint32_t src_clock_hz);
|
| /components/net/lwip/lwip-1.4.1/doc/ |
| A D | snmp_agent.txt | 133 Note the object identifiers for thes MIB-2 and your private MIB 148 We have three distinct parts for all object identifiers:
|
| /components/lwp/terminal/ |
| A D | bsd_porting.h | 229 vm_size_t size, struct vm_object **object,
|
| /components/drivers/usb/cherryusb/ |
| A D | LICENSE | 32 not limited to compiled object code, generated documentation,
|
| A D | README.md | 59 …quests, CLASS requests, VENDOR requests and custom special requests. The object-oriented and chain…
|