/third_party/python/Lib/ |
H A D | netrc.py | 179 attrs = self.hosts[host] 180 rep += f"machine {host}\n\tlogin {attrs[0]}\n" 181 if attrs[1]: 182 rep += f"\taccount {attrs[1]}\n" 183 rep += f"\tpassword {attrs[2]}\n"
|
/third_party/curl/lib/vssh/ |
H A D | libssh2.c | 2016 LIBSSH2_SFTP_ATTRIBUTES attrs; in ssh_statemach_act() local 2020 LIBSSH2_SFTP_STAT, &attrs); in ssh_statemach_act() 2025 data->info.filetime = attrs.mtime; in ssh_statemach_act() 2054 LIBSSH2_SFTP_ATTRIBUTES attrs; in ssh_statemach_act() local 2058 LIBSSH2_SFTP_STAT, &attrs); in ssh_statemach_act() 2066 curl_off_t size = attrs.filesize; in ssh_statemach_act() 2071 data->state.resume_from = attrs.filesize; in ssh_statemach_act() 2483 LIBSSH2_SFTP_ATTRIBUTES attrs; in ssh_statemach_act() local 2487 LIBSSH2_SFTP_STAT, &attrs); in ssh_statemach_act() 2492 !(attrs in ssh_statemach_act() [all...] |
/third_party/mesa3d/src/gallium/drivers/v3d/ |
H A D | v3dx_state.c | 362 v3dx_pack(&so->attrs[i * size], in v3d_vertex_state_create() 420 uint32_t *attrs; in v3d_vertex_state_create() local 423 &so->defaults_offset, &so->defaults, (void **)&attrs); in v3d_vertex_state_create() 426 attrs[i * 4 + 0] = 0; in v3d_vertex_state_create() 427 attrs[i * 4 + 1] = 0; in v3d_vertex_state_create() 428 attrs[i * 4 + 2] = 0; in v3d_vertex_state_create() 431 attrs[i * 4 + 3] = 1; in v3d_vertex_state_create() 433 attrs[i * 4 + 3] = fui(1.0); in v3d_vertex_state_create()
|
/third_party/python/Tools/demo/ |
H A D | spreadsheet.py | 237 def startelement(self, tag, attrs): 240 method(attrs) 251 def start_cell(self, attrs): 252 self.y = int(attrs.get("row")) 253 self.x = int(attrs.get("col")) 255 def start_value(self, attrs): 256 self.fmt = attrs.get('format') 257 self.alignment = xml2align.get(attrs.get('align'))
|
/third_party/node/deps/v8/src/objects/ |
H A D | js-objects.cc | 1094 PropertyAttributes attrs = maybe.FromJust(); in DefineProperties() 1096 if (attrs == ABSENT) continue; in DefineProperties() 1097 if (attrs & DONT_ENUM) continue; in DefineProperties() 1615 PropertyAttributes attrs = NONE; in ValidateAndApplyPropertyDescriptor() local 1618 attrs = static_cast<PropertyAttributes>( in ValidateAndApplyPropertyDescriptor() 1619 attrs | (desc->enumerable() ? NONE : DONT_ENUM)); in ValidateAndApplyPropertyDescriptor() 1621 attrs = static_cast<PropertyAttributes>( in ValidateAndApplyPropertyDescriptor() 1622 attrs | (current->enumerable() ? NONE : DONT_ENUM)); in ValidateAndApplyPropertyDescriptor() 1625 attrs = static_cast<PropertyAttributes>( in ValidateAndApplyPropertyDescriptor() 1626 attrs | (des in ValidateAndApplyPropertyDescriptor() 1848 PropertyAttributes attrs = maybe.FromJust(); GetOwnPropertyDescriptor() local 4197 int attrs = attributes; ApplyAttributesToDictionary() local [all...] |
/drivers/peripheral/distributed_audio/hdi_service/audio/v1_0/include/ |
H A D | audio_render_interface_impl_base.h | 55 const AudioSampleAttributes &attrs, const sptr<IDAudioCallback> &callback, const int32_t dhId) = 0;
|
/foundation/arkui/ace_engine/frameworks/bridge/common/dom/ |
H A D | dom_proxy.h | 42 void SetAttr(const std::vector<std::pair<std::string, std::string>>& attrs) override {}
|
/foundation/multimedia/audio_framework/frameworks/native/pulseaudio/modules/hdi/ |
H A D | source_userdata.h | 51 SourceAttr attrs; member
|
/foundation/communication/bluetooth_service/services/bluetooth/server/src/ |
H A D | bluetooth_avrcp_ct_server.cpp | 1063 std::vector<uint8_t> attrs; in GetPlayerAppSettingAttributeText() local 1066 attrs.push_back(static_cast<uint8_t>(attribute)); in GetPlayerAppSettingAttributeText() 1069 result = pimpl->service_->GetPlayerAppSettingAttributeText(BluetoothRawAddress(device), attrs); in GetPlayerAppSettingAttributeText() 1109 std::vector<uint32_t> attrs; in GetElementAttributes() local 1112 attrs.push_back(static_cast<uint32_t>(attribute)); in GetElementAttributes() 1116 BluetoothRawAddress(device), AVRC_ELEMENT_ATTRIBUTES_IDENTIFIER_PLAYING, attrs); in GetElementAttributes() 1165 std::vector<uint32_t> attrs; in GetFolderItems() local 1168 attrs.push_back(static_cast<uint32_t>(attribute)); in GetFolderItems() 1174 attrs); in GetFolderItems() 1301 std::vector<uint32_t> attrs; in GetMeidaPlayerList() local [all...] |
/foundation/multimedia/audio_framework/frameworks/native/hdiadapter/sink/primary/ |
H A D | audio_renderer_sink.cpp | 591 void InitAttrs(struct AudioSampleAttributes &attrs) in InitAttrs() argument 594 attrs.channelCount = AUDIO_CHANNELCOUNT; in InitAttrs() 595 attrs.sampleRate = AUDIO_SAMPLE_RATE_48K; in InitAttrs() 596 attrs.interleaved = true; in InitAttrs() 597 attrs.streamId = static_cast<int32_t>(GenerateUniqueID(AUDIO_HDI_RENDER_ID_BASE, HDI_RENDER_OFFSET_PRIMARY)); in InitAttrs() 598 attrs.type = AUDIO_IN_MEDIA; in InitAttrs() 599 attrs.period = DEEP_BUFFER_RENDER_PERIOD_SIZE; in InitAttrs() 600 attrs.isBigEndian = false; in InitAttrs() 601 attrs.isSignedData = true; in InitAttrs() 602 attrs in InitAttrs() [all...] |
/third_party/python/Lib/http/ |
H A D | cookiejar.py | 482 # RFC 2109 attrs (may turn up in Netscape cookies, too) 1311 attrs = [] 1323 attrs.append("$Version=%s" % version) 1336 attrs.append(cookie.name) 1338 attrs.append("%s=%s" % (cookie.name, value)) 1341 attrs.append('$Path="%s"' % cookie.path) 1347 attrs.append('$Domain="%s"' % domain) 1352 attrs.append(p) 1354 return attrs 1370 attrs [all...] |
/drivers/peripheral/distributed_audio/hdi_service/audio/v1_0/test/unittest/audio_render_interface/src/ |
H A D | audio_render_interface_impl_test.cpp | 530 AudioSampleAttributes attrs = { in HWTEST_F() local 545 EXPECT_EQ(HDF_SUCCESS, audioRenderInterfaceImpl_->SetSampleAttributes(attrs)); in HWTEST_F() 558 AudioSampleAttributes attrs; in HWTEST_F() local 559 EXPECT_EQ(HDF_SUCCESS, audioRenderInterfaceImpl_->GetSampleAttributes(attrs)); in HWTEST_F()
|
/foundation/arkui/ace_engine/frameworks/bridge/common/dom/input/ |
H A D | dom_textfield_util.cpp | 115 const std::string& type, const std::map<std::string, std::string>& attrs, const DOMInput& node) in CreateComponentAndSetChildAttr() 124 SetChildAttr(component, boxComponent, type, attrs); in CreateComponentAndSetChildAttr() 134 const RefPtr<BoxComponent>& boxComponent, const std::string& type, const std::map<std::string, std::string>& attrs) in SetChildAttr() 185 for (const auto& [key, value] : attrs) { in SetChildAttr() 114 CreateComponentAndSetChildAttr(const RefPtr<BoxComponent>& boxComponent, const std::string& type, const std::map<std::string, std::string>& attrs, const DOMInput& node) CreateComponentAndSetChildAttr() argument 133 SetChildAttr(const RefPtr<TextFieldComponent>& component, const RefPtr<BoxComponent>& boxComponent, const std::string& type, const std::map<std::string, std::string>& attrs) SetChildAttr() argument
|
/foundation/graphic/graphic_2d/rosen/modules/create_pixelmap_surface/src/ |
H A D | pixel_map_from_surface.cpp | 149 EGLint attrs[] = { EGL_IMAGE_PRESERVED, EGL_TRUE, EGL_NONE, }; in GetSkSurfaceFromSurfaceBuffer() local 157 eglImage_ = eglCreateImageKHR(disp, EGL_NO_CONTEXT, EGL_NATIVE_BUFFER_OHOS, nativeWindowBuffer_, attrs); in GetSkSurfaceFromSurfaceBuffer() 557 EGLint attrs[] = { EGL_IMAGE_PRESERVED, EGL_TRUE, EGL_NONE }; in CreateEGLImage() local 563 eglImage_ = eglCreateImageKHR(disp, EGL_NO_CONTEXT, EGL_NATIVE_BUFFER_OHOS, nativeWindowBuffer_, attrs); in CreateEGLImage()
|
/third_party/ltp/lib/ |
H A D | tst_netdevice.c | 115 struct tst_rtnl_attr_list attrs[] = { in tst_create_veth_pair() local 143 if (tst_rtnl_add_attr_list(file, lineno, ctx, attrs) != 2) { in tst_create_veth_pair() 166 struct tst_rtnl_attr_list attrs[] = { in tst_netdev_add_device() local 187 if (tst_rtnl_add_attr_list(file, lineno, ctx, attrs) != 2) { in tst_netdev_add_device()
|
/third_party/python/Lib/importlib/metadata/ |
H A D | __init__.py | 203 attrs = filter(None, (match.group('attr') or '').split('.')) 204 return functools.reduce(getattr, attrs, module) 256 attrs = (getattr(self, param) for param in params) 257 return all(map(operator.eq, params.values(), attrs))
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
H A D | dng_pthread.cpp | 310 int dng_pthread_create(dng_pthread_t *thread, const pthread_attr_t *attrs, void * (*func)(void *), void *arg) in dng_pthread_create() argument 327 if (attrs != NULL) in dng_pthread_create() 328 dng_pthread_attr_getstacksize (attrs, &stacksize); in dng_pthread_create() 473 int dng_pthread_mutex_init(dng_pthread_mutex_t *mutex, void * /* attrs */) in dng_pthread_mutex_init() 506 int dng_pthread_cond_init(dng_pthread_cond_t *cond, void * /* attrs */) in dng_pthread_cond_init() 861 int dng_pthread_rwlock_init(dng_pthread_rwlock_t *rwlock, const pthread_rwlockattr_t *attrs) in dng_pthread_rwlock_init() argument
|
/drivers/peripheral/audio/test/systemtest/hdi_service/hdiperformace/src/ |
H A D | audio_idlhdicapture_performace_test.cpp | 195 InitAttrs(audiopara.attrs); in HWTEST_F() 198 int32_t ret = audiopara.capture->SetSampleAttributes(audiopara.capture, &audiopara.attrs); in HWTEST_F() 223 InitAttrs(audiopara.attrs); in HWTEST_F() 224 audiopara.attrs.silenceThreshold = BUFFER; in HWTEST_F() 225 int32_t ret = audiopara.capture->SetSampleAttributes(audiopara.capture, &audiopara.attrs); in HWTEST_F() 257 InitAttrs(audiopara.attrs); in HWTEST_F() 258 int32_t ret = audiopara.capture->SetSampleAttributes(audiopara.capture, &audiopara.attrs); in HWTEST_F()
|
/third_party/node/deps/openssl/openssl/apps/ |
H A D | pkcs12.c | 903 const STACK_OF(X509_ATTRIBUTE) *attrs; in dump_certs_pkeys_bag() 906 attrs = PKCS12_SAFEBAG_get0_attrs(bag); in dump_certs_pkeys_bag() 914 print_attribs(out, attrs, "Bag Attributes"); in dump_certs_pkeys_bag() 935 print_attribs(out, attrs, "Bag Attributes"); in dump_certs_pkeys_bag() 958 print_attribs(out, attrs, "Bag Attributes"); in dump_certs_pkeys_bag() 971 print_attribs(out, attrs, "Bag Attributes"); in dump_certs_pkeys_bag() 981 print_attribs(out, attrs, "Bag Attributes"); in dump_certs_pkeys_bag()
|
/third_party/openssl/apps/ |
H A D | pkcs12.c | 907 const STACK_OF(X509_ATTRIBUTE) *attrs; in dump_certs_pkeys_bag() 910 attrs = PKCS12_SAFEBAG_get0_attrs(bag); in dump_certs_pkeys_bag() 918 print_attribs(out, attrs, "Bag Attributes"); in dump_certs_pkeys_bag() 939 print_attribs(out, attrs, "Bag Attributes"); in dump_certs_pkeys_bag() 962 print_attribs(out, attrs, "Bag Attributes"); in dump_certs_pkeys_bag() 975 print_attribs(out, attrs, "Bag Attributes"); in dump_certs_pkeys_bag() 985 print_attribs(out, attrs, "Bag Attributes"); in dump_certs_pkeys_bag()
|
/third_party/python/Lib/xml/dom/ |
H A D | expatbuilder.py | 576 # Takes a string for the doctype, subset string, and namespace attrs string. 715 # list of (prefix, uri) ns declarations. Namespace attrs are 716 # constructed from this and added to the element's attrs. 829 attrs = "" 835 # add every new NS decl from context to L and attrs string 843 if attrs: 844 attrs = "%s\n %s='%s'" % (attrs, declname, uri) 846 attrs = " %s='%s'" % (declname, uri) 848 return attrs [all...] |
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/include/ |
H A D | distributed_hardware_service.h | 62 std::string QueryDhSysSpec(const std::string &targetKey, std::string &attrs);
|
/foundation/distributedhardware/distributed_screen/services/screenservice/sourceservice/dscreenservice/include/ |
H A D | dscreen_source_stub.h | 46 const std::string &version, const std::string &attrs, const std::string &reqId) const;
|
/third_party/alsa-utils/alsamixer/ |
H A D | menu_widget.c | 86 attrs.menu, WIDGET_BORDER | WIDGET_SUBWINDOW); in menu_widget_create()
|
/third_party/mesa3d/src/egl/main/ |
H A D | eglimage.h | 96 _eglParseImageAttribList(_EGLImageAttribs *attrs, _EGLDisplay *disp,
|