/third_party/jerryscript/targets/mbedos5/tools/ |
H A D | generate_pins.py | 17 Generate pins.cpp for a specified target, using target definitions from the 120 Enumerate pins specified in PinNames.h, by looking for a PinName enum 140 def write_pins_to_file(pins, pins_file, out_cpp_file): 142 Write the generated pins for a specified mbed board into the output C++ file. 149 '''.format(len(pins)) 151 lengths = ',\n '.join(str(len(pin)) for pin in pins) 158 magic_values = ',\n '.join(pins) 165 magic_strings = ',\n '.join('"' + pin + '"' for pin in pins) 185 Generate pins.cpp for a specified mbed board, using target definitions from the 194 default='source/pins [all...] |
/third_party/ffmpeg/libavdevice/ |
H A D | dshow_enumpins.c | 29 long WINAPI ff_dshow_enumpins_Next(DShowEnumPins *this, unsigned long n, IPin **pins, in DECLARE_ADDREF() 34 if (!pins) in DECLARE_ADDREF() 38 *pins = (IPin *) this->pin; in DECLARE_ADDREF() 61 long WINAPI ff_dshow_enumpins_Clone(DShowEnumPins *this, DShowEnumPins **pins) in ff_dshow_enumpins_Clone() argument 65 if (!pins) in ff_dshow_enumpins_Clone() 71 *pins = new; in ff_dshow_enumpins_Clone()
|
H A D | dshow.c | 385 IEnumPins *pins = 0; in dshow_get_device_media_types() local 389 if (IBaseFilter_EnumPins(device_filter, &pins) != S_OK) in dshow_get_device_media_types() 392 while (IEnumPins_Next(pins, 1, &pin, NULL) == S_OK) { in dshow_get_device_media_types() 438 IEnumPins_Release(pins); in dshow_get_device_media_types() 544 // get media types exposed by pins of device in dshow_cycle_devices() 1166 * Cycle through available pins using the device_filter device, of type 1169 * If ppin is NULL, cycle through all pins listing audio/video capabilities. 1176 IEnumPins *pins = 0; in dshow_cycle_pins() local 1191 r = IBaseFilter_EnumPins(device_filter, &pins); in dshow_cycle_pins() 1193 av_log(avctx, AV_LOG_ERROR, "Could not enumerate pins in dshow_cycle_pins() [all...] |
/third_party/jerryscript/targets/mbedos5/ |
H A D | Makefile | 55 all: source/jerry-targetjs.h source/pins.cpp .mbed ../../.mbedignore 69 python ../../tools/js2c.py --ignore pins.js 71 source/pins.cpp:
|
/foundation/communication/netmanager_base/frameworks/native/netconnclient/src/ |
H A D | network_security_config.cpp | 440 cJSON *pins = cJSON_GetObjectItem(root, TAG_PIN.c_str()); in ParseJsonPinSet() local 441 if (pins == nullptr || !cJSON_IsArray(pins)) { in ParseJsonPinSet() 444 uint32_t size = cJSON_GetArraySize(pins); in ParseJsonPinSet() 447 cJSON *pinsItem = cJSON_GetArrayItem(pins, i); in ParseJsonPinSet() 561 int32_t NetworkSecurityConfig::GetPinSetForHostName(const std::string &hostname, std::string &pins) in GetPinSetForHostName() argument 600 pins = ss.str(); in GetPinSetForHostName() 601 if (!pins.empty()) { in GetPinSetForHostName() 602 pins.pop_back(); in GetPinSetForHostName() 666 NETMGR_LOG_I("domainConfigs_.domains_.pinSet_.pins[ in DumpConfigs() [all...] |
H A D | net_conn_client.cpp | 852 int32_t NetConnClient::GetPinSetForHostName(const std::string &hostname, std::string &pins) in GetPinSetForHostName() argument 854 return NetworkSecurityConfig::GetInstance().GetPinSetForHostName(hostname, pins); in GetPinSetForHostName()
|
/foundation/multimedia/audio_framework/frameworks/native/hdiadapter/sink/fast/ |
H A D | fast_audio_renderer_sink.cpp | 445 deviceDesc.pins = PIN_OUT_EARPIECE; in CreateRender() 448 deviceDesc.pins = PIN_OUT_SPEAKER; in CreateRender() 451 deviceDesc.pins = PIN_OUT_HEADSET; in CreateRender() 454 deviceDesc.pins = PIN_OUT_USB_EXT; in CreateRender() 457 deviceDesc.pins = PIN_OUT_BLUETOOTH_SCO; in CreateRender() 460 deviceDesc.pins = PIN_OUT_SPEAKER; in CreateRender()
|
/foundation/communication/netmanager_base/test/netconnmanager/unittest/net_conn_multi_test/ |
H A D | network_security_config_test.cpp | 252 std::string pins; in HWTEST_F() local 255 auto ret = NetworkSecurityConfig::GetInstance().GetPinSetForHostName(hostname, pins); in HWTEST_F()
|
/foundation/communication/netstack/frameworks/native/http/http_client/ |
H A D | http_client_task.cpp | 246 std::string pins; in SetServerSSLCertOption() local 247 auto ret = NetManagerStandard::NetConnClient::GetInstance().GetPinSetForHostName(hostname, pins); in SetServerSSLCertOption() 248 if (ret != 0 || pins.empty()) { in SetServerSSLCertOption() 251 NETSTACK_CURL_EASY_SET_OPTION(curl, CURLOPT_PINNEDPUBLICKEY, pins.c_str()); in SetServerSSLCertOption()
|
/foundation/multimedia/audio_framework/frameworks/native/hdiadapter/source/fast/ |
H A D | fast_audio_capturer_source.cpp | 330 deviceDesc.pins = PIN_IN_MIC; in CreateCapture() 333 deviceDesc.pins = PIN_IN_HS_MIC; in CreateCapture() 336 deviceDesc.pins = PIN_IN_USB_EXT; in CreateCapture() 339 deviceDesc.pins = PIN_IN_BLUETOOTH_SCO_HEADSET; in CreateCapture() 343 deviceDesc.pins = PIN_IN_MIC; in CreateCapture()
|
/foundation/communication/netmanager_base/interfaces/innerkits/netconnclient/include/ |
H A D | network_security_config.h | 62 int32_t GetPinSetForHostName(const std::string &hostname, std::string &pins);
|
H A D | net_conn_client.h | 408 int32_t GetPinSetForHostName(const std::string &hostname, std::string &pins);
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/wps/ |
H A D | wps_registrar.c | 106 static void wps_free_pins(struct dl_list *pins) in wps_free_pins() argument 109 dl_list_for_each_safe(pin, prev, pins, struct wps_uuid_pin, list) in wps_free_pins() 164 struct dl_list pins; member 675 dl_list_init(®->pins); in wps_registrar_init() 730 wps_free_pins(®->pins); in wps_registrar_flush() 764 dl_list_for_each(pin, ®->pins, struct wps_uuid_pin, list) { in wps_registrar_invalidate_unused() 816 dl_list_add(®->pins, &p->list); in wps_registrar_add_pin() 861 dl_list_for_each_safe(pin, prev, ®->pins, struct wps_uuid_pin, list) in wps_registrar_expire_pins() 886 dl_list_for_each_safe(pin, prev, ®->pins, struct wps_uuid_pin, list) in wps_registrar_invalidate_wildcard_pin() 914 dl_list_for_each_safe(pin, prev, ®->pins, struc in wps_registrar_invalidate_pin() [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/wps/ |
H A D | wps_registrar.c | 107 static void wps_free_pins(struct dl_list *pins) in wps_free_pins() argument 110 dl_list_for_each_safe(pin, prev, pins, struct wps_uuid_pin, list) in wps_free_pins() 166 struct dl_list pins; member 676 dl_list_init(®->pins); in wps_registrar_init() 731 wps_free_pins(®->pins); in wps_registrar_flush() 765 dl_list_for_each(pin, ®->pins, struct wps_uuid_pin, list) { in wps_registrar_invalidate_unused() 817 dl_list_add(®->pins, &p->list); in wps_registrar_add_pin() 862 dl_list_for_each_safe(pin, prev, ®->pins, struct wps_uuid_pin, list) in wps_registrar_expire_pins() 887 dl_list_for_each_safe(pin, prev, ®->pins, struct wps_uuid_pin, list) in wps_registrar_invalidate_wildcard_pin() 915 dl_list_for_each_safe(pin, prev, ®->pins, struc in wps_registrar_invalidate_pin() [all...] |
/foundation/multimedia/audio_lite/services/impl/audio_source/ |
H A D | audio_source.cpp | 189 desc.pins = PIN_IN_MIC; in Initialize()
|
/foundation/distributedhardware/distributed_audio/common/include/ |
H A D | audio_types.h | 70 * One port corresponds to multiple pins, and each pin belongs to a physical component (such as a 108 enum AudioPortPin pins; /**< Pins of audio ports (input and output). For details, see {@link AudioPortPin}. */ member
|
/foundation/communication/netstack/frameworks/cj/http/src/ |
H A D | net_http_client_exec.cpp | 607 std::string pins; in SetServerSSLCertOption() local 608 auto ret1 = NetManagerStandard::NetConnClient::GetInstance().GetPinSetForHostName(hostname, pins); in SetServerSSLCertOption() 609 if (ret1 != 0 || pins.empty()) { in SetServerSSLCertOption() 612 NETSTACK_CURL_EASY_SET_OPTION(curl, CURLOPT_PINNEDPUBLICKEY, pins.c_str(), context); in SetServerSSLCertOption()
|
/foundation/multimedia/audio_framework/frameworks/native/hdiadapter/sink/primary/ |
H A D | audio_renderer_sink.cpp | 697 deviceDesc.pins = PIN_OUT_SPEAKER; in CreateRender() 699 deviceDesc.pins = PIN_OUT_USB_HEADSET; in CreateRender() 701 deviceDesc.pins = PIN_OUT_DP; in CreateRender() 703 deviceDesc.pins = GetAudioPortPin(); in CreateRender() 708 halName_.c_str(), param.sampleRate, param.channelCount, param.format, deviceDesc.pins); in CreateRender() 1140 scene.desc.pins = audioSceneOutPort; in SetAudioScene()
|
/foundation/communication/netstack/frameworks/js/napi/http/http_exec/src/ |
H A D | http_exec.cpp | 998 std::string pins; in AddCurlHandle() local 999 auto ret1 = NetManagerStandard::NetConnClient::GetInstance().GetPinSetForHostName(hostname, pins); in AddCurlHandle() 1000 if (ret1 != 0 || pins.empty()) { in AddCurlHandle() 1003 NETSTACK_LOGD("curl set pin =[%{public}s]", pins.c_str()); in AddCurlHandle() 1004 NETSTACK_CURL_EASY_SET_OPTION(curl, CURLOPT_PINNEDPUBLICKEY, pins.c_str(), context); in AddCurlHandle()
|
/foundation/multimedia/audio_framework/frameworks/native/hdiadapter/sink/multichannel/ |
H A D | multichannel_audio_renderer_sink.cpp | 474 deviceDesc.pins = PIN_OUT_SPEAKER; in CreateRender() 476 deviceDesc.pins = PIN_OUT_USB_HEADSET; in CreateRender() 867 scene.desc.pins = audioSceneOutPort; in SetAudioScene()
|
/foundation/multimedia/audio_framework/frameworks/native/hdiadapter/source/remote_fast/ |
H A D | remote_fast_audio_capturer_source.cpp | 307 deviceDesc.pins = AudioPortPin::PIN_IN_MIC; in CreateCapture() 742 scene.desc.pins = AudioPortPin::PIN_IN_MIC; in SetAudioScene()
|
/foundation/multimedia/audio_framework/frameworks/native/hdiadapter/source/remote/ |
H A D | remote_audio_capturer_source.cpp | 332 deviceDesc.pins = AudioPortPin::PIN_IN_MIC; in CreateCapture() 659 scene.desc.pins = AudioPortPin::PIN_IN_MIC; in SetAudioScene()
|
/foundation/distributedhardware/distributed_audio/services/test_example/ |
H A D | distributedaudiotest.cpp | 301 renderDesc.pins = AudioPortPin::PIN_OUT_SPEAKER; in OpenSpk() 511 captureDesc.pins = AudioPortPin::PIN_IN_MIC; in OpenMic()
|
/foundation/multimedia/audio_framework/frameworks/native/hdiadapter/source/primary/ |
H A D | audio_capturer_source.cpp | 723 deviceDesc.pins = PIN_IN_MIC; in CreateCapture() 725 deviceDesc.pins = PIN_IN_USB_HEADSET; in CreateCapture() 731 halName_.c_str(), param.sourceType, param.sampleRate, param.channelCount, param.format, deviceDesc.pins); in CreateCapture() 1272 scene.desc.pins = audioSceneInPort; in SetAudioScene()
|
/third_party/mesa3d/src/panfrost/bifrost/ |
H A D | bi_schedule.c | 965 bi_foreach_instr_in_tuple(succ, pins) { in bi_has_cross_passthrough_hazard() 966 bi_foreach_src(pins, s) { in bi_has_cross_passthrough_hazard() 967 if (bi_is_word_equiv(ins->dest[0], pins->src[s]) && in bi_has_cross_passthrough_hazard() 968 !bi_reads_temps(pins, s)) in bi_has_cross_passthrough_hazard()
|