Home
last modified time | relevance | path

Searched refs:pswd (Results 1 – 15 of 15) sorted by relevance

/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/fetch2/
H A Dhg.py110 if ud.pswd:
111 hgroot = ud.user + ":" + ud.pswd + "@" + host + ud.path
128 if ud.user and ud.pswd:
129 …h.default.schemes=%s\" clone %s %s://%s/%s %s" % (ud.basecmd, ud.user, ud.pswd, proto, " ".join(op…
136 if ud.user and ud.pswd:
137 …ault.password=%s --config \"auth.default.schemes=%s\" pull" % (ud.basecmd, ud.user, ud.pswd, proto)
141 if ud.user and ud.pswd:
142 …nfig \"auth.default.schemes=%s\" update -C %s" % (ud.basecmd, ud.user, ud.pswd, proto, " ".join(op…
253 if ud.user and ud.pswd:
254 … --config \"auth.default.schemes=%s\" pull %s" % (ud.basecmd, ud.user, ud.pswd, proto, ud.moddir),…
[all …]
H A Dwget.py114 if ud.user and ud.pswd:
125 fetchcmd += " --user=%s --password=%s" % (ud.user, ud.pswd)
350 if ud.user and ud.pswd:
351 add_basic_auth(ud.user + ':' + ud.pswd, r)
520 ud.path.split(dirver)[0], ud.user, ud.pswd, {}])
546 ud.user, ud.pswd, {}])
649 uri = bb.fetch.encodeurl([ud.type, ud.host, path, ud.user, ud.pswd, {}])
H A Daz.py58 if ud.user and ud.pswd:
59 fetchcmd += " --user=%s --password=%s --auth-no-challenge" % (ud.user, ud.pswd)
H A Dperforce.py84 (ud.user, ud.pswd) = path.split('@')[0].split(':')
150 if ud.pswd:
151 p4opt += ' -P "%s"' % (ud.pswd)
H A Dcvs.py87 if ud.pswd:
88 cvsroot += ":" + ud.pswd
H A Dsvn.py88 if ud.pswd:
89 options.append("--password %s" % ud.pswd)
H A D__init__.py380 pswd = m.group('pswd')
383 pswd = ''
394 return type, host, urllib.parse.unquote(path), user, pswd, p
401 type, host, path, user, pswd, p = decoded
408 if pswd:
409 url.append(":%s" % pswd)
1269 … (self.type, self.host, self.path, self.user, self.pswd, self.parm) = decodeurl(d.expand(url))
1274 if not self.pswd and "pswd" in self.parm:
1275 self.pswd = self.parm["pswd"]
/OK3568_Linux_fs/app/qsetting/
H A Dqtwifi.cpp197 const char *c_ssid, *pswd; in on_itemClicked() local
214 pswd = s_pswd.c_str(); in on_itemClicked()
216 printf("ssid: %s, %s\n", c_ssid, pswd); in on_itemClicked()
217 if (RK_wifi_connect((char *)c_ssid, pswd) < 0) in on_itemClicked()
/OK3568_Linux_fs/yocto/poky/scripts/lib/recipetool/
H A Dcreate.py373 scheme, host, path, user, pswd, parms = bb.fetch2.decodeurl(uri)
393 fUrl = bb.fetch2.encodeurl(('git', host, path, user, pswd, parms))
/OK3568_Linux_fs/yocto/poky/scripts/lib/devtool/
H A Dupgrade.py464 (type, host, path, user, pswd, parm) = bb.fetch.decodeurl(url)
/OK3568_Linux_fs/yocto/poky/meta/classes/
H A Dlicense.bbclass208 (method, host, path, user, pswd, parm) = bb.fetch.decodeurl(url)
H A Dbase.bbclass102 (method, host, path, user, pswd, parm) = bb.fetch.decodeurl(url)
H A Dinsane.bbclass527 (type, host, path, user, pswd, parm) = bb.fetch.decodeurl(url)
/OK3568_Linux_fs/yocto/poky/meta/lib/oe/
H A Dpatch.py696 (type, host, path, user, pswd, parm) = bb.fetch.decodeurl(patch["remote"])
/OK3568_Linux_fs/yocto/poky/bitbake/
H A DChangeLog170 - Also allow user and pswd options in SRC_URIs globally (from Poky)