Home
last modified time | relevance | path

Searched refs:dsc (Results 1 – 25 of 36) sorted by relevance

12

/external/wpa_supplicant_8/wpa_supplicant/dbus/
Ddbus_new_introspect.c86 const struct wpa_dbus_property_desc *dsc) in add_property() argument
90 dsc->dbus_property, dsc->type, in add_property()
91 dsc->getter ? "read" : "", in add_property()
92 dsc->setter ? "write" : ""); in add_property()
99 const struct wpa_dbus_method_desc *dsc; in extract_interfaces_methods() local
102 for (dsc = methods; dsc && dsc->dbus_method; dsc++) { in extract_interfaces_methods()
103 iface = add_interface(list, dsc->dbus_interface); in extract_interfaces_methods()
105 add_entry(iface->xml, "method", dsc->dbus_method, in extract_interfaces_methods()
106 dsc->args, 1); in extract_interfaces_methods()
114 const struct wpa_dbus_signal_desc *dsc; in extract_interfaces_signals() local
[all …]
Ddbus_new_helpers.c28 const struct wpa_dbus_property_desc *dsc; in fill_dict_with_properties() local
30 for (dsc = props; dsc && dsc->dbus_property; dsc++) { in fill_dict_with_properties()
32 if (os_strncmp(dsc->dbus_interface, interface, in fill_dict_with_properties()
37 if (dsc->getter == NULL) in fill_dict_with_properties()
45 &dsc->dbus_property)) in fill_dict_with_properties()
49 if (!dsc->getter(dsc, &entry_iter, error, user_data)) { in fill_dict_with_properties()
52 __func__, dsc->dbus_interface, in fill_dict_with_properties()
53 dsc->dbus_property); in fill_dict_with_properties()
159 const struct wpa_dbus_property_desc *dsc, in properties_get() argument
171 if (dsc->getter == NULL) { in properties_get()
[all …]
/external/curl/packages/vms/
Dreport_openssl_version.c39 const struct dsc$descriptor_s * symbol,
40 const struct dsc$descriptor_s * value,
79 struct dsc$descriptor_s symbol_dsc; in main()
80 struct dsc$descriptor_s value_dsc; in main()
83 symbol_dsc.dsc$a_pointer = argv[2]; in main()
84 symbol_dsc.dsc$w_length = strlen(argv[2]); in main()
85 symbol_dsc.dsc$b_dtype = DSC$K_DTYPE_T; in main()
86 symbol_dsc.dsc$b_class = DSC$K_CLASS_S; in main()
88 value_dsc.dsc$a_pointer = (char *)version; /* Cast ok */ in main()
89 value_dsc.dsc$w_length = strlen(version); in main()
[all …]
Dcurl_crtl_init.c70 const struct dsc$descriptor_s * table_dsc,
71 struct dsc$descriptor_s * name_dsc,
76 const struct dsc$descriptor_s * table_dsc,
77 const struct dsc$descriptor_s * name_dsc,
90 struct dsc$descriptor_s name_dsc; in sys_trnlnm()
103 name_dsc.dsc$w_length = strlen(logname); in sys_trnlnm()
104 name_dsc.dsc$a_pointer = (char *)logname; in sys_trnlnm()
105 name_dsc.dsc$b_dtype = DSC$K_DTYPE_T; in sys_trnlnm()
106 name_dsc.dsc$b_class = DSC$K_CLASS_S; in sys_trnlnm()
127 struct dsc$descriptor_s proc_table_dsc; in sys_crelnm()
[all …]
/external/mesa3d/src/glx/tests/
Dquery_renderer_implementation_unittest.cpp171 struct dri2_screen dsc; in TEST_F() local
173 memset(&dsc, 0, sizeof(dsc)); in TEST_F()
179 dri2_query_renderer_string(&dsc.base, in TEST_F()
200 struct dri2_screen dsc; in TEST_F() local
208 memset(&dsc, 0, sizeof(dsc)); in TEST_F()
209 dsc.rendererQuery = &rendererQueryExt; in TEST_F()
216 dri2_query_renderer_string(&dsc.base, in TEST_F()
237 struct dri2_screen dsc; in TEST_F() local
239 memset(&dsc, 0, sizeof(dsc)); in TEST_F()
244 dri2_query_renderer_integer(&dsc.base, in TEST_F()
[all …]
/external/ImageMagick/MagickCore/
Dvms.c135 directory->pat.dsc$a_pointer=directory->pattern; in opendir()
136 directory->pat.dsc$w_length=strlen(directory->pattern); in opendir()
137 directory->pat.dsc$b_dtype=DSC$K_DTYPE_T; in opendir()
138 directory->pat.dsc$b_class=DSC$K_CLASS_S; in opendir()
180 struct dsc$descriptor_s in readdir()
186 result.dsc$a_pointer=buffer; in readdir()
187 result.dsc$w_length=sizeof(buffer)-2; in readdir()
188 result.dsc$b_dtype=DSC$K_DTYPE_T; in readdir()
189 result.dsc$b_class=DSC$K_CLASS_S; in readdir()
252 struct dsc$descriptor_s in VMSIsMagickConflict()
[all …]
Dvms.h961 struct dsc$descriptor_s
/external/u-boot/fs/yaffs2/
Dyaffsfs.c2791 static void yaffsfs_SetDirRewound(struct yaffsfs_DirSearchContxt *dsc) in yaffsfs_SetDirRewound() argument
2793 if (dsc && in yaffsfs_SetDirRewound()
2794 dsc->dirObj && in yaffsfs_SetDirRewound()
2795 dsc->dirObj->variant_type == YAFFS_OBJECT_TYPE_DIRECTORY) { in yaffsfs_SetDirRewound()
2797 dsc->offset = 0; in yaffsfs_SetDirRewound()
2799 if (list_empty(&dsc->dirObj->variant.dir_variant.children)) in yaffsfs_SetDirRewound()
2800 dsc->nextReturn = NULL; in yaffsfs_SetDirRewound()
2802 dsc->nextReturn = in yaffsfs_SetDirRewound()
2803 list_entry(dsc->dirObj->variant.dir_variant. in yaffsfs_SetDirRewound()
2811 static void yaffsfs_DirAdvance(struct yaffsfs_DirSearchContxt *dsc) in yaffsfs_DirAdvance() argument
[all …]
/external/webrtc/webrtc/examples/objc/AppRTCDemo/
DARDWebSocketChannel.m221 NSString *dsc = description.description;
222 dsc = [dsc stringByReplacingOccurrencesOfString:@"offer"
225 [[RTCSessionDescription alloc] initWithType:@"answer" sdp:dsc];
/external/u-boot/drivers/usb/host/
Ddwc2.c596 uint32_t dsc; in dwc_otg_submit_rh_msg_in_descriptor() local
634 dsc = 0x00000001; in dwc_otg_submit_rh_msg_in_descriptor()
638 data[2] = dsc & RH_A_NDP; in dwc_otg_submit_rh_msg_in_descriptor()
640 if (dsc & RH_A_PSM) in dwc_otg_submit_rh_msg_in_descriptor()
642 if (dsc & RH_A_NOCP) in dwc_otg_submit_rh_msg_in_descriptor()
644 else if (dsc & RH_A_OCPM) in dwc_otg_submit_rh_msg_in_descriptor()
648 data[5] = (dsc & RH_A_POTPGT) >> 24; in dwc_otg_submit_rh_msg_in_descriptor()
649 data[7] = dsc & RH_B_DR; in dwc_otg_submit_rh_msg_in_descriptor()
654 data[8] = (dsc & RH_B_DR) >> 8; in dwc_otg_submit_rh_msg_in_descriptor()
/external/google-fruit/extras/packaging/
DCMakeLists.txt6 libfruit.dsc
/external/libcxx/utils/google-benchmark/tools/gbench/
Dreport.py168 dsc = "U Test, Repetitions: {} vs {}".format(
174 dsc += ". WARNING: Results unreliable! {}+ repetitions recommended.".format(
187 dsc_color, dsc,
/external/google-benchmark/tools/gbench/
Dreport.py186 dsc = "U Test, Repetitions: {} vs {}".format(
193 dsc += ". WARNING: Results unreliable! {}+ repetitions recommended.".format(
206 dsc_color, dsc,
/external/igt-gpu-tools/lib/
Digt_core.h506 #define igt_describe(dsc) \ argument
507 igt_describe_f("%s", dsc)
/external/arm-trusted-firmware/docs/plat/
Dsynquacer.rst81 export ACTIVE_PLATFORM="Platform/Socionext/DeveloperBox/DeveloperBox.dsc"
/external/swiftshader/third_party/llvm-7.0/llvm/docs/
DXRayExample.rst81 $ llvm-xray account xray-log.llc.m35qPB -top=10 -sort=sum -sortorder=dsc -instr_map ./bin/llc
154 $ llvm-xray account xray-log.llc.5rqxkU -top=10 -sort=sum -sortorder=dsc -instr_map ./bin/llc
/external/swiftshader/third_party/llvm-subzero/
DCREDITS.TXT191 E: raul@dsc.ufcg.edu.br
/external/llvm/
DCREDITS.TXT192 E: raul@dsc.ufcg.edu.br
/external/pcre/dist2/src/
Dpcre2grep.c586 sym_val.dsc$w_length = strlen(val_buf); in pcre2grep_exit()
2312 cmd.dsc$w_length = strlen(cmdbuf) - 1; in pcre2grep_callout()
Dpcre2test.c8209 nam.dsc$w_length = strlen(nam_buf); in c_option()
8211 val.dsc$w_length = strlen(val_buf); in c_option()
/external/swiftshader/third_party/llvm-7.0/llvm/
DCREDITS.TXT203 E: raul@dsc.ufcg.edu.br
/external/e2fsprogs/lib/et/
Dcom_err.texinfo222 error_table dsc
/external/honggfuzz/examples/apache-httpd/corpus_http1/
Dcaaa9fafa41e916133e0754a91cd973f.0000af66.honggfuzz.cov143 …�t��q��1����ȪQ�p��B��%8o� ���J�F���ݎ�������֗�6Z�z:�<ϨNI��n���MWv#�dsc�9G���cr���zI�P�…
/external/honggfuzz/examples/apache-httpd/corpus_http2/
Dcaaa9fafa41e916133e0754a91cd973f.0000af66.honggfuzz.cov143 …�t��q��1����ȪQ�p��B��%8o� ���J�F���ݎ�������֗�6Z�z:�<ϨNI��n���MWv#�dsc�9G���cr���zI�P�…
/external/python/cpython3/Lib/test/
Dmime.types1222 text/prs.lines.tag tag dsc

12