Lines Matching refs:uri
167 uint8_t uri[CONFIG_BT_MESH_DFU_URI_MAXLEN]; member
183 const char *uri, uint8_t uri_len, in dfd_srv_start_oob_upload() argument
188 memcpy(dfd_srv_oob_ctx.uri, uri, uri_len); in dfd_srv_start_oob_upload()
256 if (IN_RANGE(dfd_srv_oob_ctx.uri[i], 48, 57) || /* DIGIT */ in oob_check_handler()
257 IN_RANGE(dfd_srv_oob_ctx.uri[i], 65, 90) || /* ALPHA UPPER CASE */ in oob_check_handler()
258 IN_RANGE(dfd_srv_oob_ctx.uri[i], 97, 122) || /* ALPHA LOWER CASE */ in oob_check_handler()
259 dfd_srv_oob_ctx.uri[i] == '.' || in oob_check_handler()
260 dfd_srv_oob_ctx.uri[i] == '+' || in oob_check_handler()
261 dfd_srv_oob_ctx.uri[i] == '-') { in oob_check_handler()
262 scheme[i] = dfd_srv_oob_ctx.uri[i]; in oob_check_handler()
268 if (i == dfd_srv_oob_ctx.uri_len || dfd_srv_oob_ctx.uri[i] != ':') { in oob_check_handler()
1371 .uri = "Tester",
4233 if (img->uri) { in dfu_img_cb()