HomeSort by: relevance | last modified time | path
    Searched refs:userinfo (Results 1 - 15 of 15) sorted by relevancy

  /src/usr.sbin/user/
usermgmt.h 41 int userinfo(int, char **);
main.c 58 { 1, { "userinfo", NULL }, userinfo },
59 { 2, { "user", "info" }, userinfo },
Makefile 19 LINKS+= ${BINDIR}/user ${BINDIR}/userinfo
23 MAN= user.8 useradd.8 userdel.8 usermod.8 userinfo.8 usermgmt.conf.5
user.c 1818 } else if (strcmp(prog, "userinfo") == 0) {
2455 userinfo(int argc, char **argv) function
2473 usermgmt_usage("userinfo");
2480 usermgmt_usage("userinfo");
  /src/usr.sbin/sa/
extern.h 56 struct userinfo { struct
usrdb.c 143 struct userinfo newui;
245 struct userinfo uistore, *ui = &uistore;
254 memcpy(ui, data.data, sizeof(struct userinfo));
  /src/crypto/external/apache2/openssl/dist/apps/
srp.c 231 { "userinfo", OPT_USERINFO, 's', "Additional info to be set for user" },
251 char *passin = NULL, *passout = NULL, *gN = NULL, *userinfo = NULL; local
297 userinfo = opt_arg();
482 || (userinfo
483 && ((row[DB_srpinfo] = OPENSSL_strdup(userinfo)) == NULL))
559 || (userinfo
560 && ((row[DB_srpinfo] = OPENSSL_strdup(userinfo))
  /src/crypto/external/bsd/openssl/dist/apps/
srp.c 220 {"userinfo", OPT_USERINFO, 's', "Additional info to be set for user"},
240 char *passin = NULL, *passout = NULL, *gN = NULL, *userinfo = NULL; local
286 userinfo = opt_arg();
474 || (userinfo
475 && ((row[DB_srpinfo] = OPENSSL_strdup(userinfo)) == NULL))
557 || (userinfo
558 && ((row[DB_srpinfo] = OPENSSL_strdup(userinfo))
  /src/crypto/external/bsd/openssl.old/dist/apps/
srp.c 207 {"userinfo", OPT_USERINFO, 's', "Additional info to be set for user"},
225 char *passin = NULL, *passout = NULL, *gN = NULL, *userinfo = NULL; local
271 userinfo = opt_arg();
451 || (userinfo
452 && ((row[DB_srpinfo] = OPENSSL_strdup(userinfo)) == NULL))
534 || (userinfo
535 && ((row[DB_srpinfo] = OPENSSL_strdup(userinfo))
  /src/usr.bin/finger/
util.c 100 static void userinfo(PERSON *, struct passwd *);
273 userinfo(pn, pw);
397 userinfo(PERSON *pn, struct passwd *pw) function
  /src/external/bsd/libpcap/dist/
pcap.c 1791 char *userinfo, *host, *port, *path; local
1823 * authority = [ userinfo "@" ] host [ ":" port ]
1825 * userinfo = *( unreserved / pct-encoded / sub-delims / ":" )
1957 * Is there a userinfo field?
1967 userinfo = get_substring(parsep, userinfo_len, ebuf);
1968 if (userinfo == NULL) {
1981 userinfo = NULL;
2022 free(userinfo);
2035 free(userinfo);
2046 free(userinfo);
    [all...]
  /src/external/bsd/libevent/dist/
http.c 4487 char *userinfo; /* userinfo (typically username:pass), or NULL */ member in struct:evhttp_uri
4532 /* Return true iff [s..eos) is a valid userinfo */
4644 /* Optionally, we start with "userinfo@" */
4651 uri->userinfo = mm_strdup(s);
4652 if (uri->userinfo == NULL) {
4941 URI_FREE_STR_(userinfo);
4973 if (uri->userinfo)
4974 evbuffer_add_printf(tmp,"%s@", uri->userinfo);
5023 return uri->userinfo;
    [all...]
  /src/external/bsd/ntp/dist/sntp/libevent/
http.c 4485 char *userinfo; /* userinfo (typically username:pass), or NULL */ member in struct:evhttp_uri
4530 /* Return true iff [s..eos) is a valid userinfo */
4642 /* Optionally, we start with "userinfo@" */
4649 uri->userinfo = mm_strdup(s);
4650 if (uri->userinfo == NULL) {
4939 URI_FREE_STR_(userinfo);
4971 if (uri->userinfo)
4972 evbuffer_add_printf(tmp,"%s@", uri->userinfo);
5021 return uri->userinfo;
    [all...]
  /src/external/bsd/libevent/dist/include/event2/
http.h 1042 * Return the userinfo part of an evhttp_uri, or NULL if it has no userinfo
1080 /** Set the userinfo of an evhttp_uri, or clear the userinfo if userinfo==NULL.
1081 * Returns 0 on success, -1 if userinfo is not well-formed. */
1083 int evhttp_uri_set_userinfo(struct evhttp_uri *uri, const char *userinfo);
1113 * scheme://[[userinfo]@]foo.com[:port]]/[path][?query][#fragment]
  /src/external/bsd/ntp/dist/sntp/libevent/include/event2/
http.h 1043 * Return the userinfo part of an evhttp_uri, or NULL if it has no userinfo
1081 /** Set the userinfo of an evhttp_uri, or clear the userinfo if userinfo==NULL.
1082 * Returns 0 on success, -1 if userinfo is not well-formed. */
1084 int evhttp_uri_set_userinfo(struct evhttp_uri *uri, const char *userinfo);
1114 * scheme://[[userinfo]@]foo.com[:port]]/[path][?query][#fragment]

Completed in 42 milliseconds