HomeSort by relevance Sort by last modified time
    Searched refs:sshbuf_get_cstring (Results 1 - 23 of 23) sorted by null

  /external/openssh/
ssh-keysign.c 105 if ((r = sshbuf_get_cstring(b, &p, NULL)) != 0)
112 if ((r = sshbuf_get_cstring(b, &p, NULL)) != 0)
119 if ((r = sshbuf_get_cstring(b, &pkalg, NULL)) != 0 ||
135 if ((r = sshbuf_get_cstring(b, &p, &len)) != 0)
147 if ((r = sshbuf_get_cstring(b, &luser, NULL)) != 0)
sftp-server.c 683 if ((r = sshbuf_get_cstring(iqueue, &name, NULL)) != 0 ||
824 if ((r = sshbuf_get_cstring(iqueue, &name, NULL)) != 0)
899 if ((r = sshbuf_get_cstring(iqueue, &name, NULL)) != 0 ||
1011 if ((r = sshbuf_get_cstring(iqueue, &path, NULL)) != 0)
1096 if ((r = sshbuf_get_cstring(iqueue, &name, NULL)) != 0)
1114 if ((r = sshbuf_get_cstring(iqueue, &name, NULL)) != 0 ||
1134 if ((r = sshbuf_get_cstring(iqueue, &name, NULL)) != 0)
1152 if ((r = sshbuf_get_cstring(iqueue, &path, NULL)) != 0)
1179 if ((r = sshbuf_get_cstring(iqueue, &oldpath, NULL)) != 0 ||
1180 (r = sshbuf_get_cstring(iqueue, &newpath, NULL)) != 0
    [all...]
auth-options.c 477 if ((r = sshbuf_get_cstring(c, &name, NULL)) != 0 ||
508 if ((r = sshbuf_get_cstring(data, &command,
524 if ((r = sshbuf_get_cstring(data, &allowed,
bufaux.c 157 if ((ret = sshbuf_get_cstring(buffer, &value, &len)) != 0) {
ssh-ecdsa.c 135 if (sshbuf_get_cstring(b, &ktype, NULL) != 0 ||
ssh-ed25519.c 116 if ((r = sshbuf_get_cstring(b, &ktype, NULL)) != 0 ||
ssh-agent.c 626 (r = sshbuf_get_cstring(e->request, &comment, NULL)) != 0) {
688 if ((r = sshbuf_get_cstring(e->request, &passwd, &pwlen)) != 0)
757 if ((r = sshbuf_get_cstring(e->request, &provider, NULL)) != 0 ||
758 (r = sshbuf_get_cstring(e->request, &pin, NULL)) != 0)
829 if ((r = sshbuf_get_cstring(e->request, &provider, NULL)) != 0 ||
830 (r = sshbuf_get_cstring(e->request, &pin, NULL)) != 0)
    [all...]
sftp-common.c 140 if ((r = sshbuf_get_cstring(b, &type, NULL)) != 0 ||
ssh-dss.c 158 if (sshbuf_get_cstring(b, &ktype, NULL) != 0 ||
sshbuf.h 194 int sshbuf_get_cstring(struct sshbuf *buf, char **valp, size_t *lenp);
sftp-client.c 433 if ((r = sshbuf_get_cstring(msg, &name, NULL)) != 0 ||
606 if ((r = sshbuf_get_cstring(msg, &filename,
608 (r = sshbuf_get_cstring(msg, &longname,
857 if ((r = sshbuf_get_cstring(msg, &filename, NULL)) != 0 ||
858 (r = sshbuf_get_cstring(msg, &longname, NULL)) != 0 ||
1057 if ((r = sshbuf_get_cstring(msg, &filename, NULL)) != 0 ||
1058 (r = sshbuf_get_cstring(msg, &longname, NULL)) != 0 ||
    [all...]
authfd.c 216 (r = sshbuf_get_cstring(ids, &comment, NULL)) != 0)
249 (r = sshbuf_get_cstring(ids, &comment, NULL)) != 0)
ssh-rsa.c 181 if (sshbuf_get_cstring(b, &ktype, NULL) != 0) {
sshkey.c     [all...]
packet.c     [all...]
sshbuf-getput-basic.c 181 sshbuf_get_cstring(struct sshbuf *buf, char **valp, size_t *lenp) function
ssh-keygen.c 455 (r = sshbuf_get_cstring(b, &type, NULL)) != 0 ||
456 (r = sshbuf_get_cstring(b, &cipher, NULL)) != 0 ||
    [all...]
krl.c 885 if ((r = sshbuf_get_cstring(subsect,
964 (r = sshbuf_get_cstring(copy, &krl->comment, NULL)) != 0)
    [all...]
kex.c 291 if ((r = sshbuf_get_cstring(b, &(proposal[i]), NULL)) != 0)
channels.c     [all...]
monitor.c 613 (r = sshbuf_get_cstring(m, &alg, &alglen)) != 0)
    [all...]
  /external/openssh/regress/unittests/sshbuf/
test_sshbuf_fixed.c 61 ASSERT_INT_EQ(sshbuf_get_cstring(p1, &s, &l), 0);
92 ASSERT_INT_EQ(sshbuf_get_cstring(p2, &s, &l), 0);
test_sshbuf_getput_basic.c 343 TEST_START("sshbuf_get_cstring giant");
349 r = sshbuf_get_cstring(p1, &s2, &s);
355 TEST_START("sshbuf_get_cstring embedded \\0");
361 r = sshbuf_get_cstring(p1, &s2, NULL);
366 TEST_START("sshbuf_get_cstring trailing \\0");
372 ASSERT_INT_EQ(sshbuf_get_cstring(p1, &s2, &s), 0);

Completed in 1676 milliseconds