Lines Matching refs:encode_buf

1207 	char encode_buf[CFG_MAX_BUF];  in cfg_put_options()  local
1230 *encode_buf = ';'; in cfg_put_options()
1231 enclen = cfg_encode_string(tag, &encode_buf[1], CFG_MAX_BUF - 1) + 1; in cfg_put_options()
1237 encode_buf[enclen] = '='; in cfg_put_options()
1238 encode_buf[enclen + 1] = '\0'; in cfg_put_options()
1241 if (strncmp(buf, &encode_buf[1], enclen) == 0) { in cfg_put_options()
1247 strcat(p, &encode_buf[1]); in cfg_put_options()
1251 strcpy(p, &encode_buf[1]); in cfg_put_options()
1253 if (cfg_encode_string(val, encode_buf, CFG_MAX_BUF) < 0) { in cfg_put_options()
1258 strcat(p, encode_buf); in cfg_put_options()
1269 p = strstr(buf, encode_buf); in cfg_put_options()
1278 strcat(buf, &encode_buf[1]); in cfg_put_options()
1280 strcat(buf, &encode_buf[1]); in cfg_put_options()
1282 strcpy(buf, &encode_buf[1]); in cfg_put_options()
1284 enclen = cfg_encode_string(val, encode_buf, CFG_MAX_BUF); in cfg_put_options()
1290 strcat(buf, encode_buf); in cfg_put_options()
1315 char encode_buf[CFG_MAX_BUF]; in cfg_get_single_option() local
1337 *encode_buf = ';'; in cfg_get_single_option()
1338 enclen = cfg_encode_string(tag, &encode_buf[1], CFG_MAX_BUF - 1) + 1; in cfg_get_single_option()
1344 encode_buf[enclen] = '='; in cfg_get_single_option()
1345 encode_buf[enclen + 1] = '\0'; in cfg_get_single_option()
1348 if (strncmp(buf, &encode_buf[1], enclen) == 0) { in cfg_get_single_option()
1366 p = strstr(buf, encode_buf); in cfg_get_single_option()
1396 char encode_buf[CFG_MAX_BUF]; in cfg_del_option() local
1417 *encode_buf = ';'; in cfg_del_option()
1418 enclen = cfg_encode_string(tag, &encode_buf[1], CFG_MAX_BUF - 1) + 1; in cfg_del_option()
1424 encode_buf[enclen] = '='; in cfg_del_option()
1425 encode_buf[enclen + 1] = '\0'; in cfg_del_option()
1428 if (strncmp(buf, &encode_buf[1], enclen) == 0) { in cfg_del_option()
1440 p = strstr(buf, encode_buf); in cfg_del_option()