Home
last modified time | relevance | path

Searched refs:attr (Results 1226 - 1250 of 1737) sorted by relevance

1...<<41424344454647484950>>...70

/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_common/
H A Deap_sake_common.h83 struct eap_sake_parse_attr *attr);
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/
H A Dpmksa_cache_auth.h73 struct radius_das_attrs *attr);
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_common/
H A Deap_sake_common.h83 struct eap_sake_parse_attr *attr);
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/
H A Dpmksa_cache_auth.h73 struct radius_das_attrs *attr);
/third_party/protobuf/ruby/ext/google/protobuf_c/
H A Dupb.c5469 return &h->table[handlers_getsel(h, f, type)].attr.return_closure_type; in returntype()
5474 const upb_handlerattr *attr) { in doset()
5481 if (attr) { in doset()
5482 set_attr = *attr; in doset()
5511 const void *table_return_type = h->table[sel].attr.return_closure_type; in doset()
5522 h->table[sel].attr = set_attr; in doset()
5544 ret = h->table[sel].attr.return_closure_type; in effective_closure_type()
5549 ret = h->table[sel].attr.return_closure_type; in effective_closure_type()
5555 * ret = h->table[sel].attr.return_closure_type; in effective_closure_type()
5564 * the return closure type of this handler's attr
5472 doset(upb_handlers *h, int32_t sel, const upb_fielddef *f, upb_handlertype_t type, upb_func *func, const upb_handlerattr *attr) doset() argument
5568 const upb_handlerattr *attr; checkstart() local
5636 upb_handlers_setunknown(upb_handlers *h, upb_unknown_handlerfunc *func, const upb_handlerattr *attr) upb_handlers_setunknown() argument
5642 upb_handlers_setstartmsg(upb_handlers *h, upb_startmsg_handlerfunc *func, const upb_handlerattr *attr) upb_handlers_setstartmsg() argument
5648 upb_handlers_setendmsg(upb_handlers *h, upb_endmsg_handlerfunc *func, const upb_handlerattr *attr) upb_handlers_setendmsg() argument
5681 upb_handlers_getattr(const upb_handlers *h, upb_selector_t sel, upb_handlerattr *attr) upb_handlers_getattr() argument
5909 upb_handlerattr attr = UPB_HANDLERATTR_INIT; MSG_WRITER() local
8281 new_tag(upb_handlers *h, const upb_fielddef *f, upb_wiretype_t wt, upb_handlerattr *attr) new_tag() argument
8435 upb_handlerattr attr = UPB_HANDLERATTR_INIT; newhandlers_callback() local
8812 upb_handlerattr attr = UPB_HANDLERATTR_INIT; onmreg() local
13008 set_enum_hd(upb_handlers *h, const upb_fielddef *f, bool preserve_fieldnames, upb_handlerattr *attr) set_enum_hd() argument
[all...]
/third_party/rust/crates/libc/src/unix/linux_like/linux/
H A Dmod.rs3856 pub fn mq_getattr(mqd: ::mqd_t, attr: *mut ::mq_attr) -> ::c_int; in mq_getattr()
3866 attr: *const pthread_mutexattr_t, in pthread_mutexattr_getrobust()
3870 attr: *mut pthread_mutexattr_t, in pthread_mutexattr_setrobust()
4179 attr: *const pthread_mutexattr_t, in pthread_mutexattr_getprotocol()
4183 attr: *mut pthread_mutexattr_t, in pthread_mutexattr_setprotocol()
4211 attr: *const ::pthread_attr_t, in pthread_attr_getguardsize()
4217 attr: *const pthread_condattr_t, in pthread_condattr_getpshared()
4298 attr: *const pthread_mutexattr_t, in pthread_mutexattr_getpshared()
4310 attr: *const ::pthread_attr_t, in pthread_create()
4347 pub fn posix_spawnattr_init(attr in posix_spawnp()
[all...]
/third_party/NuttX/fs/nfs/
H A Dnfs_adapter.c317 nfs_node->n_mode = fxdr_unsigned(uint16_t, attr_reply.attr.fa_mode); in vfs_nfs_stat_internal()
318 nfs_node->n_type = fxdr_unsigned(uint8_t, attr_reply.attr.fa_type); in vfs_nfs_stat_internal()
319 nfs_node->n_size = fxdr_hyper(&attr_reply.attr.fa_size); in vfs_nfs_stat_internal()
323 fxdr_nfsv3time(&attr_reply.attr.fa_mtime, &ts); in vfs_nfs_stat_internal()
327 fxdr_nfsv3time(&attr_reply.attr.fa_atime, &ts); in vfs_nfs_stat_internal()
330 fxdr_nfsv3time(&attr_reply.attr.fa_ctime, &ts); in vfs_nfs_stat_internal()
499 pthread_mutexattr_t attr; in nfs_bind() local
561 (void)pthread_mutexattr_init(&attr); in nfs_bind()
562 (void)pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE); in nfs_bind()
563 error = pthread_mutex_init(&nmp->nm_mux, &attr); in nfs_bind()
[all...]
/third_party/mesa3d/src/microsoft/vulkan/
H A Ddzn_pipeline.c981 const VkVertexInputAttributeDescription *attr = in dzn_graphics_pipeline_translate_vi() local
985 if (slot_class[attr->binding] == D3D12_INPUT_CLASSIFICATION_PER_INSTANCE_DATA && in dzn_graphics_pipeline_translate_vi()
988 if (attr->binding == divisors->pVertexBindingDivisors[d].binding) { in dzn_graphics_pipeline_translate_vi()
995 VkFormat patched_format = dzn_graphics_pipeline_patch_vi_format(attr->format); in dzn_graphics_pipeline_translate_vi()
996 if (patched_format != attr->format) in dzn_graphics_pipeline_translate_vi()
997 vi_conversions[attr->location] = vk_format_to_pipe_format(attr->format); in dzn_graphics_pipeline_translate_vi()
1000 inputs[attr->location] = (D3D12_INPUT_ELEMENT_DESC) { in dzn_graphics_pipeline_translate_vi()
1003 .InputSlot = attr->binding, in dzn_graphics_pipeline_translate_vi()
1004 .InputSlotClass = slot_class[attr in dzn_graphics_pipeline_translate_vi()
[all...]
/device/soc/hisilicon/hi3861v100/sdk_liteos/platform/os/Huawei_LiteOS/components/lib/libc/musl/include/
H A Dpthread.h383 * @param attr [IN] Condition variable attribute. The passed value and the default value of this parameter can be only set to PTHREAD_PROCESS_PRIVATE.
555 * @param attr [IN] Pointer to the thread attributes object to be initialized.
589 * @param attr [IN] Pointer to the thread attributes object to be destroyed.
617 * @param attr [IN] Pointer to the thread attributes object to be read.
644 * @param attr [OUT] Pointer to the thread attributes object to be set.
671 * @param attr [IN] Pointer to the thread attributes object to be read.
698 * @param attr [OUT] Pointer to the thread attributes object to be set.
730 * @param attr [OUT] Pointer to the thread attributes object to be set.
756 * @param attr [IN] Pointer to the thread attributes object to be read.
783 * @param attr [I
[all...]
/device/soc/rockchip/common/sdk_linux/drivers/dma-buf/
H A Ddma-heap.c385 static ssize_t total_pools_kb_show(struct kobject *kobj, struct kobj_attribute *attr, char *buf) in total_pools_kb_show() argument
405 &total_pools_kb_attr.attr,
/drivers/peripheral/distributed_audio/hdi_service/audio/v1_0/test/unittest/audio_capture_extension/src/
H A Daudio_capture_ext_impl_test.cpp219 AudioSampleAttributes attr; in HWTEST_F() local
223 audioCapturelatencyImpl_->SetAttrs(adpName, desc, attr, callback, dhId); in HWTEST_F()
/drivers/peripheral/distributed_audio/hdi_service/audio/v1_0/test/unittest/audio_render_extension/src/
H A Daudio_render_ext_impl_test.cpp129 AudioSampleAttributes attr; in HWTEST_F() local
133 audioRenderlatencyImpl_->SetAttrs(adpName, desc, attr, callback, dhId); in HWTEST_F()
/third_party/icu/icu4c/source/i18n/unicode/
H A Dtblcoll.h508 * @param attr attribute type
513 virtual void setAttribute(UColAttribute attr, UColAttributeValue value,
518 * @param attr attribute type
523 virtual UColAttributeValue getAttribute(UColAttribute attr,
H A Ddecimfmt.h780 * @param attr the attribute to set
786 virtual DecimalFormat& setAttribute(UNumberFormatAttribute attr, int32_t newValue, UErrorCode& status);
792 * @param attr the attribute to set
797 virtual int32_t getAttribute(UNumberFormatAttribute attr, UErrorCode& status) const;
H A Dcoll.h871 * @param attr attribute type
877 virtual void setAttribute(UColAttribute attr, UColAttributeValue value,
882 * @param attr attribute type
888 virtual UColAttributeValue getAttribute(UColAttribute attr,
H A Dudat.h958 * @param attr The attribute to query; e.g. UDAT_PARSE_ALLOW_WHITESPACE.
960 * @return The value of attr.
964 udat_getBooleanAttribute(const UDateFormat* fmt, UDateFormatBooleanAttribute attr, UErrorCode* status);
971 * @param attr The attribute to set; one of UDAT_PARSE_ALLOW_WHITESPACE or UDAT_PARSE_ALLOW_NUMERIC
972 * @param newValue The new value of attr.
977 udat_setBooleanAttribute(UDateFormat *fmt, UDateFormatBooleanAttribute attr, UBool newValue, UErrorCode* status);
H A Ducal.h995 * @param attr The desired attribute; one of UCAL_LENIENT, UCAL_FIRST_DAY_OF_WEEK,
997 * @return The value of attr.
1003 UCalendarAttribute attr);
1010 * @param attr The desired attribute; one of UCAL_LENIENT, UCAL_FIRST_DAY_OF_WEEK,
1012 * @param newValue The new value of attr.
1018 UCalendarAttribute attr,
/third_party/ltp/testcases/kernel/device-drivers/block/block_dev_kernel/
H A Dltp_block_dev.c341 struct device_attribute *attr, char *buf) in sys_result()
351 struct device_attribute *attr, const char *buf, size_t count) in sys_tcase()
340 sys_result(struct device *dev, struct device_attribute *attr, char *buf) sys_result() argument
350 sys_tcase(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) sys_tcase() argument
/third_party/mesa3d/src/mesa/vbo/
H A Dvbo_exec_draw.c132 const GLubyte size = exec->vtx.attr[vbo_attr].size; in vbo_exec_bind_arrays()
133 const GLenum16 type = exec->vtx.attr[vbo_attr].type; in vbo_exec_bind_arrays()
/third_party/node/deps/icu-small/source/i18n/unicode/
H A Dcoll.h871 * @param attr attribute type
877 virtual void setAttribute(UColAttribute attr, UColAttributeValue value,
882 * @param attr attribute type
888 virtual UColAttributeValue getAttribute(UColAttribute attr,
H A Ducal.h1028 * @param attr The desired attribute; one of UCAL_LENIENT, UCAL_FIRST_DAY_OF_WEEK,
1030 * @return The value of attr.
1036 UCalendarAttribute attr);
1043 * @param attr The desired attribute; one of UCAL_LENIENT, UCAL_FIRST_DAY_OF_WEEK,
1045 * @param newValue The new value of attr.
1051 UCalendarAttribute attr,
H A Dtblcoll.h508 * @param attr attribute type
513 virtual void setAttribute(UColAttribute attr, UColAttributeValue value,
518 * @param attr attribute type
523 virtual UColAttributeValue getAttribute(UColAttribute attr,
H A Ddecimfmt.h780 * @param attr the attribute to set
786 virtual DecimalFormat& setAttribute(UNumberFormatAttribute attr, int32_t newValue, UErrorCode& status);
792 * @param attr the attribute to set
797 virtual int32_t getAttribute(UNumberFormatAttribute attr, UErrorCode& status) const;
H A Dudat.h958 * @param attr The attribute to query; e.g. UDAT_PARSE_ALLOW_WHITESPACE.
960 * @return The value of attr.
964 udat_getBooleanAttribute(const UDateFormat* fmt, UDateFormatBooleanAttribute attr, UErrorCode* status);
971 * @param attr The attribute to set; one of UDAT_PARSE_ALLOW_WHITESPACE or UDAT_PARSE_ALLOW_NUMERIC
972 * @param newValue The new value of attr.
977 udat_setBooleanAttribute(UDateFormat *fmt, UDateFormatBooleanAttribute attr, UBool newValue, UErrorCode* status);
H A Ducol.h1209 * @param attr attribute type
1218 ucol_setAttribute(UCollator *coll, UColAttribute attr, UColAttributeValue value, UErrorCode *status);
1223 * @param attr attribute type
1232 ucol_getAttribute(const UCollator *coll, UColAttribute attr, UErrorCode *status);

Completed in 54 milliseconds

1...<<41424344454647484950>>...70