Searched refs:token (Results 1 - 25 of 1418) sorted by relevance

1234567891011>>

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/busybox/modutils/
H A Dlsmod.c47 char *token[4]; local
57 while (config_read(parser, token, 4, 3, "# \t", PARSE_NORMAL)) {
58 if (token[3] != NULL && token[3][0] == '[') {
59 token[3]++;
60 token[3][strlen(token[3])-1] = '\0';
62 token[3] = (char *) "";
66 char *uni_name = unicode_conv_to_printable(&uni_stat, token[0]);
68 printf("%s%*s %8s %2s %s\n", uni_name, pad_len, "", token[
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/busybox/modutils/
H A Dlsmod.c47 char *token[4]; local
57 while (config_read(parser, token, 4, 3, "# \t", PARSE_NORMAL)) {
58 if (token[3] != NULL && token[3][0] == '[') {
59 token[3]++;
60 token[3][strlen(token[3])-1] = '\0';
62 token[3] = (char *) "";
66 char *uni_name = unicode_conv_to_printable(&uni_stat, token[0]);
68 printf("%s%*s %8s %2s %s\n", uni_name, pad_len, "", token[
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/busybox/modutils/
H A Dlsmod.c47 char *token[4]; local
57 while (config_read(parser, token, 4, 3, "# \t", PARSE_NORMAL)) {
58 if (token[3] != NULL && token[3][0] == '[') {
59 token[3]++;
60 token[3][strlen(token[3])-1] = '\0';
62 token[3] = (char *) "";
66 char *uni_name = unicode_conv_to_printable(&uni_stat, token[0]);
68 printf("%s%*s %8s %2s %s\n", uni_name, pad_len, "", token[
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/samba-3.5.8/source3/lib/
H A Dutil_nttoken.c31 Duplicate a SID token.
36 NT_USER_TOKEN *token; local
41 token = TALLOC_ZERO_P(mem_ctx, NT_USER_TOKEN);
42 if (token == NULL) {
48 token->user_sids = (DOM_SID *)talloc_memdup(
49 token, ptoken->user_sids, sizeof(DOM_SID) * ptoken->num_sids );
51 if (token->user_sids == NULL) {
53 TALLOC_FREE(token);
56 token->num_sids = ptoken->num_sids;
61 if ( !se_priv_copy( &token
78 struct nt_user_token *token = NULL; local
123 token_sid_in_ace(const NT_USER_TOKEN *token, const struct security_ace *ace) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/samba-3.5.8/source3/lib/
H A Dutil_nttoken.c31 Duplicate a SID token.
36 NT_USER_TOKEN *token; local
41 token = TALLOC_ZERO_P(mem_ctx, NT_USER_TOKEN);
42 if (token == NULL) {
48 token->user_sids = (DOM_SID *)talloc_memdup(
49 token, ptoken->user_sids, sizeof(DOM_SID) * ptoken->num_sids );
51 if (token->user_sids == NULL) {
53 TALLOC_FREE(token);
56 token->num_sids = ptoken->num_sids;
61 if ( !se_priv_copy( &token
78 struct nt_user_token *token = NULL; local
123 token_sid_in_ace(const NT_USER_TOKEN *token, const struct security_ace *ace) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.5.8/source3/lib/
H A Dutil_nttoken.c31 Duplicate a SID token.
36 NT_USER_TOKEN *token; local
41 token = TALLOC_ZERO_P(mem_ctx, NT_USER_TOKEN);
42 if (token == NULL) {
48 token->user_sids = (DOM_SID *)talloc_memdup(
49 token, ptoken->user_sids, sizeof(DOM_SID) * ptoken->num_sids );
51 if (token->user_sids == NULL) {
53 TALLOC_FREE(token);
56 token->num_sids = ptoken->num_sids;
61 if ( !se_priv_copy( &token
78 struct nt_user_token *token = NULL; local
123 token_sid_in_ace(const NT_USER_TOKEN *token, const struct security_ace *ace) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/samba-3.5.8/source4/libcli/security/
H A Dsecurity_token.c28 return a blank security token
51 void security_token_debug(int dbg_lev, const struct security_token *token) argument
56 if (!token) {
57 DEBUG(dbg_lev, ("Security token: (NULL)\n"));
66 DEBUG(dbg_lev, ("Security token of user %s\n",
67 dom_sid_string(mem_ctx, token->user_sid) ));
69 (unsigned long)token->num_sids));
70 for (i = 0; i < token->num_sids; i++) {
72 dom_sid_string(mem_ctx, token->sids[i])));
75 security_token_debug_privileges(dbg_lev, token);
82 security_token_is_sid(const struct security_token *token, const struct dom_sid *sid) argument
90 security_token_is_sid_string(const struct security_token *token, const char *sid_string) argument
102 security_token_is_system(const struct security_token *token) argument
107 security_token_is_anonymous(const struct security_token *token) argument
112 security_token_has_sid(const struct security_token *token, const struct dom_sid *sid) argument
123 security_token_has_sid_string(const struct security_token *token, const char *sid_string) argument
135 security_token_has_builtin_administrators(const struct security_token *token) argument
140 security_token_has_nt_authenticated_users(const struct security_token *token) argument
145 security_token_has_enterprise_dcs(const struct security_token *token) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/samba-3.5.8/source4/libcli/security/
H A Dsecurity_token.c28 return a blank security token
51 void security_token_debug(int dbg_lev, const struct security_token *token) argument
56 if (!token) {
57 DEBUG(dbg_lev, ("Security token: (NULL)\n"));
66 DEBUG(dbg_lev, ("Security token of user %s\n",
67 dom_sid_string(mem_ctx, token->user_sid) ));
69 (unsigned long)token->num_sids));
70 for (i = 0; i < token->num_sids; i++) {
72 dom_sid_string(mem_ctx, token->sids[i])));
75 security_token_debug_privileges(dbg_lev, token);
82 security_token_is_sid(const struct security_token *token, const struct dom_sid *sid) argument
90 security_token_is_sid_string(const struct security_token *token, const char *sid_string) argument
102 security_token_is_system(const struct security_token *token) argument
107 security_token_is_anonymous(const struct security_token *token) argument
112 security_token_has_sid(const struct security_token *token, const struct dom_sid *sid) argument
123 security_token_has_sid_string(const struct security_token *token, const char *sid_string) argument
135 security_token_has_builtin_administrators(const struct security_token *token) argument
140 security_token_has_nt_authenticated_users(const struct security_token *token) argument
145 security_token_has_enterprise_dcs(const struct security_token *token) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.5.8/source4/libcli/security/
H A Dsecurity_token.c28 return a blank security token
51 void security_token_debug(int dbg_lev, const struct security_token *token) argument
56 if (!token) {
57 DEBUG(dbg_lev, ("Security token: (NULL)\n"));
66 DEBUG(dbg_lev, ("Security token of user %s\n",
67 dom_sid_string(mem_ctx, token->user_sid) ));
69 (unsigned long)token->num_sids));
70 for (i = 0; i < token->num_sids; i++) {
72 dom_sid_string(mem_ctx, token->sids[i])));
75 security_token_debug_privileges(dbg_lev, token);
82 security_token_is_sid(const struct security_token *token, const struct dom_sid *sid) argument
90 security_token_is_sid_string(const struct security_token *token, const char *sid_string) argument
102 security_token_is_system(const struct security_token *token) argument
107 security_token_is_anonymous(const struct security_token *token) argument
112 security_token_has_sid(const struct security_token *token, const struct dom_sid *sid) argument
123 security_token_has_sid_string(const struct security_token *token, const char *sid_string) argument
135 security_token_has_builtin_administrators(const struct security_token *token) argument
140 security_token_has_nt_authenticated_users(const struct security_token *token) argument
145 security_token_has_enterprise_dcs(const struct security_token *token) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/hotplug2/linux24_compat/
H A Dgenerate_alias.c44 #define SET_OFFSET(offset, token, prefix, prefix_len) \
45 offset = strncmp(token, prefix, prefix_len) ? 0 : prefix_len;
84 char *token; local
108 token = dup_token(nline, &nline, isspace);
109 if (!token)
111 vendor = strtoul(token, NULL, 0);
112 free(token);
114 token = dup_token(nline, &nline, isspace);
115 if (!token)
117 device = strtoul(token, NUL
224 char *token; local
373 char *token; local
452 char *token; local
576 char *token; local
674 char *token, *ptr; local
705 char *token, *sw_token; local
858 char *token; local
932 char *token; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/hotplug2/linux24_compat/
H A Dgenerate_alias.c44 #define SET_OFFSET(offset, token, prefix, prefix_len) \
45 offset = strncmp(token, prefix, prefix_len) ? 0 : prefix_len;
84 char *token; local
108 token = dup_token(nline, &nline, isspace);
109 if (!token)
111 vendor = strtoul(token, NULL, 0);
112 free(token);
114 token = dup_token(nline, &nline, isspace);
115 if (!token)
117 device = strtoul(token, NUL
224 char *token; local
373 char *token; local
452 char *token; local
576 char *token; local
674 char *token, *ptr; local
705 char *token, *sw_token; local
858 char *token; local
932 char *token; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/hotplug2/linux24_compat/
H A Dgenerate_alias.c44 #define SET_OFFSET(offset, token, prefix, prefix_len) \
45 offset = strncmp(token, prefix, prefix_len) ? 0 : prefix_len;
84 char *token; local
108 token = dup_token(nline, &nline, isspace);
109 if (!token)
111 vendor = strtoul(token, NULL, 0);
112 free(token);
114 token = dup_token(nline, &nline, isspace);
115 if (!token)
117 device = strtoul(token, NUL
224 char *token; local
373 char *token; local
452 char *token; local
576 char *token; local
674 char *token, *ptr; local
705 char *token, *sw_token; local
858 char *token; local
932 char *token; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/libxml2/doc/
H A Dapibuild.py400 def push(self, token):
401 self.tokens.insert(0, token);
404 print "Last token: ", self.last
408 def token(self): member in class:CLexer
627 def error(self, msg, token=-1):
632 if token != -1:
633 print "Got token ", token
637 def debug(self, msg, token=-1):
639 if token !
678 token = self.lexer.token() variable in class:CParser
938 token = self.lexer.token() variable in class:CParser
1006 token = self.lexer.token() variable in class:CParser
1017 def token(self): member in class:CParser
1023 token = self.parseComment(token) variable in class:CParser
1026 token = self.parsePreproc(token) variable in class:CParser
1032 token = self.lexer.token() variable in class:CParser
1042 token = self.lexer.token() variable in class:CParser
1056 token = self.parseType(token) variable in class:CParser
1083 token = self.token() variable in class:CParser
1102 token = self.token() variable in class:CParser
1113 token = self.parseBlock(token) variable in class:CParser
1153 token = self.parseTypeBlock(token) variable in class:CParser
1163 token = self.parseType(token) variable in class:CParser
1179 token = self.token() variable in class:CParser
1181 token = self.token() variable in class:CParser
1205 token = self.parseTypeBlock(token) variable in class:CParser
1239 token = self.token() variable in class:CParser
1252 token = self.parseTypeBlock(token) variable in class:CParser
1302 token = self.token() variable in class:CParser
1304 token = self.token() variable in class:CParser
1305 token = self.parseStruct(token) variable in class:CParser
1308 token = self.token() variable in class:CParser
1324 token = nametok variable in class:CParser
1335 token = self.token() variable in class:CParser
1336 token = self.parseEnumBlock(token) variable in class:CParser
1360 token = self.token() variable in class:CParser
1374 token = self.token() variable in class:CParser
1383 token = self.token() variable in class:CParser
1413 token = self.token() variable in class:CParser
1422 token = self.token() variable in class:CParser
1423 token = self.token() variable in class:CParser
1442 token = self.token() variable in class:CParser
1444 token = self.token() variable in class:CParser
1483 token = self.parseGlobal(token) variable in class:CParser
1488 token = self.parseGlobal(token) variable in class:CParser
1490 token = self.token() variable in class:CParser
1510 token = self.token() variable in class:CParser
1519 token = self.token() variable in class:CParser
1525 token = self.token() variable in class:CParser
1560 token = self.token() variable in class:CParser
1566 token = self.token() variable in class:CParser
1567 token = self.parseBlock(token); variable in class:CParser
1576 token = self.token() variable in class:CParser
1579 token = self.token() variable in class:CParser
1594 token = self.parseGlobal(token) variable in class:CParser
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/libxml2/doc/
H A Dapibuild.py400 def push(self, token):
401 self.tokens.insert(0, token);
404 print "Last token: ", self.last
408 def token(self): member in class:CLexer
627 def error(self, msg, token=-1):
632 if token != -1:
633 print "Got token ", token
637 def debug(self, msg, token=-1):
639 if token !
678 token = self.lexer.token() variable in class:CParser
938 token = self.lexer.token() variable in class:CParser
1006 token = self.lexer.token() variable in class:CParser
1017 def token(self): member in class:CParser
1023 token = self.parseComment(token) variable in class:CParser
1026 token = self.parsePreproc(token) variable in class:CParser
1032 token = self.lexer.token() variable in class:CParser
1042 token = self.lexer.token() variable in class:CParser
1056 token = self.parseType(token) variable in class:CParser
1083 token = self.token() variable in class:CParser
1102 token = self.token() variable in class:CParser
1113 token = self.parseBlock(token) variable in class:CParser
1153 token = self.parseTypeBlock(token) variable in class:CParser
1163 token = self.parseType(token) variable in class:CParser
1179 token = self.token() variable in class:CParser
1181 token = self.token() variable in class:CParser
1205 token = self.parseTypeBlock(token) variable in class:CParser
1239 token = self.token() variable in class:CParser
1252 token = self.parseTypeBlock(token) variable in class:CParser
1302 token = self.token() variable in class:CParser
1304 token = self.token() variable in class:CParser
1305 token = self.parseStruct(token) variable in class:CParser
1308 token = self.token() variable in class:CParser
1324 token = nametok variable in class:CParser
1335 token = self.token() variable in class:CParser
1336 token = self.parseEnumBlock(token) variable in class:CParser
1360 token = self.token() variable in class:CParser
1374 token = self.token() variable in class:CParser
1383 token = self.token() variable in class:CParser
1413 token = self.token() variable in class:CParser
1422 token = self.token() variable in class:CParser
1423 token = self.token() variable in class:CParser
1442 token = self.token() variable in class:CParser
1444 token = self.token() variable in class:CParser
1483 token = self.parseGlobal(token) variable in class:CParser
1488 token = self.parseGlobal(token) variable in class:CParser
1490 token = self.token() variable in class:CParser
1510 token = self.token() variable in class:CParser
1519 token = self.token() variable in class:CParser
1525 token = self.token() variable in class:CParser
1560 token = self.token() variable in class:CParser
1566 token = self.token() variable in class:CParser
1567 token = self.parseBlock(token); variable in class:CParser
1576 token = self.token() variable in class:CParser
1579 token = self.token() variable in class:CParser
1594 token = self.parseGlobal(token) variable in class:CParser
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/libxml2/doc/
H A Dapibuild.py400 def push(self, token):
401 self.tokens.insert(0, token);
404 print "Last token: ", self.last
408 def token(self): member in class:CLexer
627 def error(self, msg, token=-1):
632 if token != -1:
633 print "Got token ", token
637 def debug(self, msg, token=-1):
639 if token !
678 token = self.lexer.token() variable in class:CParser
938 token = self.lexer.token() variable in class:CParser
1006 token = self.lexer.token() variable in class:CParser
1017 def token(self): member in class:CParser
1023 token = self.parseComment(token) variable in class:CParser
1026 token = self.parsePreproc(token) variable in class:CParser
1032 token = self.lexer.token() variable in class:CParser
1042 token = self.lexer.token() variable in class:CParser
1056 token = self.parseType(token) variable in class:CParser
1083 token = self.token() variable in class:CParser
1102 token = self.token() variable in class:CParser
1113 token = self.parseBlock(token) variable in class:CParser
1153 token = self.parseTypeBlock(token) variable in class:CParser
1163 token = self.parseType(token) variable in class:CParser
1179 token = self.token() variable in class:CParser
1181 token = self.token() variable in class:CParser
1205 token = self.parseTypeBlock(token) variable in class:CParser
1239 token = self.token() variable in class:CParser
1252 token = self.parseTypeBlock(token) variable in class:CParser
1302 token = self.token() variable in class:CParser
1304 token = self.token() variable in class:CParser
1305 token = self.parseStruct(token) variable in class:CParser
1308 token = self.token() variable in class:CParser
1324 token = nametok variable in class:CParser
1335 token = self.token() variable in class:CParser
1336 token = self.parseEnumBlock(token) variable in class:CParser
1360 token = self.token() variable in class:CParser
1374 token = self.token() variable in class:CParser
1383 token = self.token() variable in class:CParser
1413 token = self.token() variable in class:CParser
1422 token = self.token() variable in class:CParser
1423 token = self.token() variable in class:CParser
1442 token = self.token() variable in class:CParser
1444 token = self.token() variable in class:CParser
1483 token = self.parseGlobal(token) variable in class:CParser
1488 token = self.parseGlobal(token) variable in class:CParser
1490 token = self.token() variable in class:CParser
1510 token = self.token() variable in class:CParser
1519 token = self.token() variable in class:CParser
1525 token = self.token() variable in class:CParser
1560 token = self.token() variable in class:CParser
1566 token = self.token() variable in class:CParser
1567 token = self.parseBlock(token); variable in class:CParser
1576 token = self.token() variable in class:CParser
1579 token = self.token() variable in class:CParser
1594 token = self.parseGlobal(token) variable in class:CParser
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/ffmpeg/libavformat/
H A Diss.c73 char token[MAX_TOKEN_SIZE]; local
76 get_token(pb, token, sizeof(token)); //"IMA_ADPCM_Sound"
77 get_token(pb, token, sizeof(token)); //packet size
78 sscanf(token, "%d", &iss->packet_size);
79 get_token(pb, token, sizeof(token)); //File ID
80 get_token(pb, token, sizeof(token)); //ou
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/ffmpeg/libavformat/
H A Diss.c73 char token[MAX_TOKEN_SIZE]; local
76 get_token(pb, token, sizeof(token)); //"IMA_ADPCM_Sound"
77 get_token(pb, token, sizeof(token)); //packet size
78 sscanf(token, "%d", &iss->packet_size);
79 get_token(pb, token, sizeof(token)); //File ID
80 get_token(pb, token, sizeof(token)); //ou
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/ffmpeg/libavformat/
H A Diss.c73 char token[MAX_TOKEN_SIZE]; local
76 get_token(pb, token, sizeof(token)); //"IMA_ADPCM_Sound"
77 get_token(pb, token, sizeof(token)); //packet size
78 sscanf(token, "%d", &iss->packet_size);
79 get_token(pb, token, sizeof(token)); //File ID
80 get_token(pb, token, sizeof(token)); //ou
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/fs/smbfs/
H A Dgetopt.c30 char *token; local
35 if ((token = strsep(options, ",")) == NULL)
37 } while (*token == '\0');
38 *optopt = token;
41 if ((val = strchr (token, '=')) != NULL) {
49 if (!strcmp(opts[i].name, token)) {
52 caller, token);
62 printk("%s: Unrecognized mount option %s\n", caller, token);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/fs/smbfs/
H A Dgetopt.c30 char *token; local
35 if ((token = strsep(options, ",")) == NULL)
37 } while (*token == '\0');
38 *optopt = token;
41 if ((val = strchr (token, '=')) != NULL) {
49 if (!strcmp(opts[i].name, token)) {
52 caller, token);
62 printk("%s: Unrecognized mount option %s\n", caller, token);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/wget/lib/
H A Dstrtok_r.c46 char *token; local
59 /* Find the end of the token. */
60 token = s;
61 s = strpbrk (token, delim);
63 /* This token finishes the string. */
64 *save_ptr = __rawmemchr (token, '\0');
67 /* Terminate the token and make *SAVE_PTR point past it. */
71 return token;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/wget/lib/
H A Dstrtok_r.c46 char *token; local
59 /* Find the end of the token. */
60 token = s;
61 s = strpbrk (token, delim);
63 /* This token finishes the string. */
64 *save_ptr = __rawmemchr (token, '\0');
67 /* Terminate the token and make *SAVE_PTR point past it. */
71 return token;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/wget/lib/
H A Dstrtok_r.c46 char *token; local
59 /* Find the end of the token. */
60 token = s;
61 s = strpbrk (token, delim);
63 /* This token finishes the string. */
64 *save_ptr = __rawmemchr (token, '\0');
67 /* Terminate the token and make *SAVE_PTR point past it. */
71 return token;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/samba-3.5.8/source4/dsdb/samdb/
H A Dsamdb_privilege.c34 struct security_token *token,
66 security_token_set_privilege(token, privilege);
73 setup the privilege mask for this security token based on our
77 struct loadparm_context *lp_ctx, struct security_token *token)
85 if (token->user_sid == NULL) {
86 token->privilege_mask = 0;
90 if (security_token_is_system(token)) {
91 token->privilege_mask = ~0;
95 if (security_token_is_anonymous(token)) {
96 token
33 samdb_privilege_setup_sid(void *samctx, TALLOC_CTX *mem_ctx, struct security_token *token, const struct dom_sid *sid) argument
76 samdb_privilege_setup(struct tevent_context *ev_ctx, struct loadparm_context *lp_ctx, struct security_token *token) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/samba-3.5.8/source4/dsdb/samdb/
H A Dsamdb_privilege.c34 struct security_token *token,
66 security_token_set_privilege(token, privilege);
73 setup the privilege mask for this security token based on our
77 struct loadparm_context *lp_ctx, struct security_token *token)
85 if (token->user_sid == NULL) {
86 token->privilege_mask = 0;
90 if (security_token_is_system(token)) {
91 token->privilege_mask = ~0;
95 if (security_token_is_anonymous(token)) {
96 token
33 samdb_privilege_setup_sid(void *samctx, TALLOC_CTX *mem_ctx, struct security_token *token, const struct dom_sid *sid) argument
76 samdb_privilege_setup(struct tevent_context *ev_ctx, struct loadparm_context *lp_ctx, struct security_token *token) argument
[all...]

Completed in 262 milliseconds

1234567891011>>