OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:algolist
(Results
1 - 3
of
3
) sorted by null
/external/dropbear/
cli-algo.c
39
unsigned char *
algolist
= NULL;
local
48
algolist
= buf_getstring(buf, &len);
49
TRACE(("cli_buf_match_algo: %s",
algolist
))
56
remotealgos[0] =
algolist
;
61
if (
algolist
[i] == '\0') {
65
if (
algolist
[i] == ',') {
66
algolist
[i] = '\0';
67
remotealgos[count] = &
algolist
[i+1];
96
m_free(
algolist
);
svr-algo.c
39
unsigned char *
algolist
= NULL;
local
48
algolist
= buf_getstring(buf, &len);
50
TRACE(("buf_match_algo: %s",
algolist
))
57
remotealgos[0] =
algolist
;
62
if (
algolist
[i] == '\0') {
66
if (
algolist
[i] == ',') {
67
algolist
[i] = '\0';
68
remotealgos[count] = &
algolist
[i+1];
98
m_free(
algolist
);
common-algo.c
216
buffer *
algolist
= NULL;
local
218
algolist
= buf_new(100);
222
buf_putbyte(
algolist
, ',');
225
buf_putbytes(
algolist
, localalgos[i].name, len);
228
buf_putstring(buf,
algolist
->data,
algolist
->len);
229
buf_free(
algolist
);
Completed in 596 milliseconds