Searched refs:name (Results 76 - 100 of 177) sorted by path

12345678

/bionic/libc/include/sys/
H A D_system_properties.h56 char name[PROP_NAME_MAX]; member in struct:prop_msg
67 ** - once allocated, a prop_info's name will not change
108 int __system_property_add(const char *name, unsigned int namelen,
136 const prop_info *__system_property_find_compat(const char *name);
137 int __system_property_read_compat(const prop_info *pi, char *name, char *value);
H A Dcdefs.h18 * 3. Neither the name of the University nor the names of its contributors
354 #define __errordecl(name, msg) extern void name(void) __attribute__((__error__(msg)))
357 #define __errordecl(name, msg) extern void name(void)
H A Dqueue.h13 * 3. Neither the name of the University nor the names of its contributors
84 #define LIST_HEAD(name, type) \
85 struct name { \
150 #define SLIST_HEAD(name, type) \
151 struct name { \
211 #define STAILQ_HEAD(name, type) \
212 struct name { \
285 #define SIMPLEQ_HEAD(name, type) \
286 struct name { \
359 #define _TAILQ_HEAD(name, typ
[all...]
H A Dsysconf.h132 extern int sysconf(int name);
H A Dsystem_properties.h41 /* Look up a system property by name, copying its value and a
47 int __system_property_get(const char *name, char *value);
49 /* Set a system property by name.
53 /* Return a pointer to the system property named name, if it
62 const prop_info *__system_property_find(const char *name);
69 ** If name is nonzero, up to PROP_NAME_MAX bytes will be
70 ** copied into the provided name pointer. The name will
73 int __system_property_read(const prop_info *pi, char *name, char *value);
H A Dxattr.h38 extern int fsetxattr(int fd, const char *name, const void *value, size_t size, int flags);
39 extern int setxattr(const char *path, const char *name, const void *value, size_t size, int flags);
40 extern int lsetxattr(const char *path, const char *name, const void *value, size_t size, int flags);
42 extern ssize_t fgetxattr(int fd, const char *name, void *value, size_t size);
43 extern ssize_t getxattr(const char *path, const char *name, void *value, size_t size);
44 extern ssize_t lgetxattr(const char *path, const char *name, void *value, size_t size);
50 extern int removexattr(const char *path, const char *name);
51 extern int lremovexattr(const char *path, const char *name);
52 extern int fremovexattr(int fd, const char *name);
/bionic/libc/include/
H A Dunistd.h180 extern int sysconf(int name);
/bionic/libc/kernel/tools/
H A Dcpp.py695 self.throw(CppConstantExpected,i,"### 'defined' must be followed by macro name or left paren")
699 self.throw(CppConstantExpected,i,"### 'defined' must be followed by macro name")
717 name = t.value
722 return ("ident", name)
751 return ("call", (name, params))
914 op, name = e
915 if macros.has_key(name):
916 if macros[name] == kCppUndefinedMacro:
920 value = int(macros[name])
923 return ("defined", macros[name])
[all...]
H A Dkernel.py39 # corresponding to a non-bracketed path name, e.g.:
313 name = m.group(1)
316 if name in self.items: # aarg, duplicate value
319 self.items[name] = value
H A Dutils.py83 # this is the name of another file, include it and parse it
115 for name in files:
116 os.remove(os.path.join(root, name))
117 for name in dirs:
118 os.rmdir(os.path.join(root, name))
/bionic/libc/kernel/uapi/asm-arm/asm/
H A Dkvm.h5 *** of the same name, to make information necessary for userspace to
122 #define KVM_REG_ARM_CORE_REG(name) (offsetof(struct kvm_regs, name) / 4)
/bionic/libc/kernel/uapi/asm-arm64/asm/
H A Dkvm.h5 *** of the same name, to make information necessary for userspace to
90 #define KVM_REG_ARM_CORE_REG(name) (offsetof(struct kvm_regs, name) / sizeof(__u32))
/bionic/libc/kernel/uapi/drm/
H A Darmada_drm.h5 *** of the same name, to make information necessary for userspace to
25 #define ARMADA_IOCTL(dir, name, str) DRM_##dir(DRM_COMMAND_BASE + DRM_ARMADA_##name, struct drm_armada_##str)
H A Ddrm.h5 *** of the same name, to make information necessary for userspace to
90 char __user *name; member in struct:drm_version
415 __u32 name; member in struct:drm_gem_flink
419 __u32 name; member in struct:drm_gem_open
H A Ddrm_mode.h5 *** of the same name, to make information necessary for userspace to
92 char name[DRM_DISPLAY_MODE_LEN]; member in struct:drm_mode_modeinfo
234 char name[DRM_PROP_NAME_LEN]; member in struct:drm_mode_property_enum
242 char name[DRM_PROP_NAME_LEN]; member in struct:drm_mode_get_property
/bionic/libc/kernel/uapi/linux/
H A Dauto_fs.h5 *** of the same name, to make information necessary for userspace to
46 char name[NAME_MAX+1]; member in struct:autofs_packet_missing
52 char name[NAME_MAX+1]; member in struct:autofs_packet_expire
H A Dauto_fs4.h5 *** of the same name, to make information necessary for userspace to
57 char name[NAME_MAX+1]; member in struct:autofs_packet_expire_multi
80 char name[NAME_MAX+1]; member in struct:autofs_v5_packet
H A Dbcache.h5 *** of the same name, to make information necessary for userspace to
22 #define BITMASK(name, type, field, offset, size) static inline __u64 name(const type *k) { return (k->field >> offset) & ~(~0ULL << size); } static inline void SET_##name(type *k, __u64 v) { k->field &= ~(~(~0ULL << size) << offset); k->field |= (v & ~(~0ULL << size)) << offset; }
30 #define KEY_FIELD(name, field, offset, size) BITMASK(name, struct bkey, field, offset, size)
31 #define PTR_FIELD(name, offset, size) static inline __u64 name(const struct bkey *k, unsigned i) { return (k->ptr[i] >> offset) & ~(~0ULL << size); } static inline void SET_##name(struct bkey *k, unsigned i, __u64 v) { k->ptr[i] &= ~(~(~0ULL << size) << offset); k->ptr[i] |= (v & ~(~0ULL << size)) << offset; }
H A Dbfs_fs.h5 *** of the same name, to make information necessary for userspace to
57 char name[BFS_NAMELEN]; member in struct:bfs_dirent
H A Dblktrace_api.h5 *** of the same name, to make information necessary for userspace to
139 char name[BLKTRACE_BDEV_SIZE]; member in struct:blk_user_trace_setup
H A Dbtrfs.h5 *** of the same name, to make information necessary for userspace to
30 char name[BTRFS_PATH_NAME_MAX + 1]; member in struct:btrfs_ioctl_vol_args
80 char name[BTRFS_SUBVOL_NAME_MAX + 1]; member in struct:btrfs_ioctl_vol_args_v2
227 char name[BTRFS_INO_LOOKUP_PATH_MAX]; member in struct:btrfs_ioctl_ino_lookup_args
H A Dcoda.h5 *** of the same name, to make information necessary for userspace to
350 int name; member in struct:coda_lookup_in
367 int name; member in struct:coda_create_in
380 int name; member in struct:coda_remove_in
415 int name; member in struct:coda_mkdir_in
427 int name; member in struct:coda_rmdir_in
H A Dcramfs_fs.h5 *** of the same name, to make information necessary for userspace to
56 __u8 name[16]; member in struct:cramfs_super
H A Ddlm_device.h5 *** of the same name, to make information necessary for userspace to
47 char name[0]; member in struct:dlm_lock_params
54 char name[0]; member in struct:dlm_lspace_params
/bionic/libc/kernel/uapi/linux/can/
H A Dnetlink.h5 *** of the same name, to make information necessary for userspace to
36 char name[16]; member in struct:can_bittiming_const

Completed in 379 milliseconds

12345678