Searched refs:aps (Results 1 - 3 of 3) sorted by relevance
/third_party/libwebsockets/plugins/ |
H A D | protocol_lws_sshd_demo.c | 251 char *aps, *p, *ps; in ssh_ops_is_pubkey_authorized() local 259 aps = malloc(s); in ssh_ops_is_pubkey_authorized() 260 if (!aps) { in ssh_ops_is_pubkey_authorized() 264 memcpy(aps, authorized_key, s); in ssh_ops_is_pubkey_authorized() 271 p = aps; in ssh_ops_is_pubkey_authorized() 288 free(aps); in ssh_ops_is_pubkey_authorized() 292 free(aps); in ssh_ops_is_pubkey_authorized() 322 if (aps) in ssh_ops_is_pubkey_authorized() 323 free(aps); in ssh_ops_is_pubkey_authorized()
|
/third_party/libwebsockets/test-apps/ |
H A D | test-sshd.c | 291 char *aps, *p, *ps; in ssh_ops_is_pubkey_authorized() local 299 aps = malloc(s); in ssh_ops_is_pubkey_authorized() 300 if (!aps) { in ssh_ops_is_pubkey_authorized() 304 memcpy(aps, authorized_key, s); in ssh_ops_is_pubkey_authorized() 311 p = aps; in ssh_ops_is_pubkey_authorized() 329 free(aps); in ssh_ops_is_pubkey_authorized() 333 free(aps); in ssh_ops_is_pubkey_authorized() 364 if (aps) in ssh_ops_is_pubkey_authorized() 365 free(aps); in ssh_ops_is_pubkey_authorized()
|
/third_party/node/deps/minimatch/ |
H A D | index.js | 636 const aps = addPatternStart; 639 dot && aps.has(src.charAt(0)) || // the pattern starts with \., and then [ or . 640 src.startsWith("\\.") && aps.has(src.charAt(2)) || // the pattern starts with \.\., and then [ or . 641 src.startsWith("\\.\\.") && aps.has(src.charAt(4)) 643 const needNoDot = !dot && !allowDot && aps.has(src.charAt(0));
|
Completed in 5 milliseconds