Home
last modified time | relevance | path

Searched refs:dsc (Results 1 – 25 of 26) 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()
158 const struct wpa_dbus_property_desc *dsc, in properties_get() argument
170 if (dsc->getter == NULL) { in properties_get()
[all …]
/external/mesa3d/src/glx/tests/
Dquery_renderer_implementation_unittest.cpp169 struct dri2_screen dsc; in TEST_F() local
171 memset(&dsc, 0, sizeof(dsc)); in TEST_F()
177 dri2_query_renderer_string(&dsc.base, in TEST_F()
198 struct dri2_screen dsc; in TEST_F() local
206 memset(&dsc, 0, sizeof(dsc)); in TEST_F()
207 dsc.rendererQuery = &rendererQueryExt; in TEST_F()
214 dri2_query_renderer_string(&dsc.base, in TEST_F()
235 struct dri2_screen dsc; in TEST_F() local
237 memset(&dsc, 0, sizeof(dsc)); in TEST_F()
242 dri2_query_renderer_integer(&dsc.base, in TEST_F()
[all …]
/external/curl/packages/vms/
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 …]
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 …]
/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.c592 uint32_t dsc; in dwc_otg_submit_rh_msg_in_descriptor() local
630 dsc = 0x00000001; in dwc_otg_submit_rh_msg_in_descriptor()
634 data[2] = dsc & RH_A_NDP; in dwc_otg_submit_rh_msg_in_descriptor()
636 if (dsc & RH_A_PSM) in dwc_otg_submit_rh_msg_in_descriptor()
638 if (dsc & RH_A_NOCP) in dwc_otg_submit_rh_msg_in_descriptor()
640 else if (dsc & RH_A_OCPM) in dwc_otg_submit_rh_msg_in_descriptor()
644 data[5] = (dsc & RH_A_POTPGT) >> 24; in dwc_otg_submit_rh_msg_in_descriptor()
645 data[7] = dsc & RH_B_DR; in dwc_otg_submit_rh_msg_in_descriptor()
650 data[8] = (dsc & RH_B_DR) >> 8; in dwc_otg_submit_rh_msg_in_descriptor()
/external/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/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-fruit/extras/packaging/
DCMakeLists.txt6 libfruit.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/
DCREDITS.TXT158 E: raul@dsc.ufcg.edu.br
/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/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/pcre/dist2/src/
Dpcre2grep.c582 sym_val.dsc$w_length = strlen(val_buf); in pcre2grep_exit()
/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�…
D5594a9a5945edb6945d705a9a38c3ff4.00020000.honggfuzz.cov1126 …�c�7��{cTr)L�:4�C��t#Q1�xW(%`Z�l#Z��6q��ҥy��܄(�p�3O�-ʵ'C@�B4*�,�dsc.K��|�n+����YRpP�…
/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
/external/strace/
DChangeLog27012 * make-dsc: Likewise.
28305 make-dist: generate strace-*.tar.gz, strace.dsc, and strace.spec.
28306 Change make-dist to generate strace-*.tar.gz, strace.dsc,
28310 * make-dsc: New file.
28312 * .gitignore: Add strace-*.tar.gz, strace.dsc, and strace.spec.

12