Lines Matching refs:username_length
79 … UCHAR *username, UINT username_length, UCHAR *password, UINT password_length) in _nxe_http_proxy_client_enable() argument
86 ((username == NX_NULL) && (username_length != 0)) || in _nxe_http_proxy_client_enable()
93 if ((username_length > NX_HTTP_PROXY_MAX_USERNAME) || in _nxe_http_proxy_client_enable()
128 username_length, password, password_length); in _nxe_http_proxy_client_enable()
180 … UCHAR *username, UINT username_length, UCHAR *password, UINT password_length) in _nx_http_proxy_client_enable() argument
212 if ((username_length) && (password_length)) in _nx_http_proxy_client_enable()
220 memcpy(string, username, username_length); /* Use case of memcpy is verified. */ in _nx_http_proxy_client_enable()
223 string[username_length] = ':'; in _nx_http_proxy_client_enable()
226 …memcpy(&string[username_length + 1], password, password_length); /* Use case of memcpy is verified… in _nx_http_proxy_client_enable()
229 string[username_length + password_length + 1] = NX_NULL; in _nx_http_proxy_client_enable()
232 status = _nx_utility_base64_encode((UCHAR *)string, username_length + password_length + 1, in _nx_http_proxy_client_enable()