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

12345

/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/linux/
H A Dlapb.h27 void (*connect_confirmation)(void *token, int reason);
28 void (*connect_indication)(void *token, int reason);
29 void (*disconnect_confirmation)(void *token, int reason);
30 void (*disconnect_indication)(void *token, int reason);
31 int (*data_indication)(void *token, struct sk_buff *skb);
32 void (*data_transmit)(void *token, struct sk_buff *skb);
47 extern int lapb_register(void *token, struct lapb_register_struct *callbacks);
48 extern int lapb_unregister(void *token);
49 extern int lapb_getparms(void *token, struct lapb_parms_struct *parms);
50 extern int lapb_setparms(void *token, struc
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/linux/
H A Dlapb.h27 void (*connect_confirmation)(void *token, int reason);
28 void (*connect_indication)(void *token, int reason);
29 void (*disconnect_confirmation)(void *token, int reason);
30 void (*disconnect_indication)(void *token, int reason);
31 int (*data_indication)(void *token, struct sk_buff *skb);
32 void (*data_transmit)(void *token, struct sk_buff *skb);
47 extern int lapb_register(void *token, struct lapb_register_struct *callbacks);
48 extern int lapb_unregister(void *token);
49 extern int lapb_getparms(void *token, struct lapb_parms_struct *parms);
50 extern int lapb_setparms(void *token, struc
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/fs/smbfs/
H A Dgetopt.c29 char *token; local
34 if ((token = strsep(options, ",")) == NULL)
36 } while (*token == '\0');
37 *optopt = token;
40 if ((val = strchr (token, '=')) != NULL) {
48 if (!strcmp(opts[i].name, token)) {
51 caller, token);
61 printk("%s: Unrecognized mount option %s\n", caller, token);
/asus-wl-520gu-7.0.1.45/src/router/samba/source/libsmb/
H A Dspnego.c29 static BOOL read_negTokenInit(ASN1_DATA *asn1, negTokenInit_t *token) argument
31 ZERO_STRUCTP(token);
45 token->mechTypes = malloc(sizeof(*token->mechTypes));
48 token->mechTypes =
49 realloc(token->mechTypes, (i + 2) *
50 sizeof(*token->mechTypes));
51 asn1_read_OID(asn1, token->mechTypes + i);
53 token->mechTypes[i] = NULL;
61 asn1_read_Integer(asn1, &token
105 write_negTokenInit(ASN1_DATA *asn1, negTokenInit_t *token) argument
168 read_negTokenTarg(ASN1_DATA *asn1, negTokenTarg_t *token) argument
211 write_negTokenTarg(ASN1_DATA *asn1, negTokenTarg_t *token) argument
246 read_spnego_data(DATA_BLOB data, SPNEGO_DATA *token) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/router/igmpproxy/src/
H A Dconfig.c100 char *token; local
110 // Get first token...
111 token = nextConfigToken();
112 if(token == NULL) {
117 while ( token != NULL ) {
118 // Check token...
119 if(strcmp("phyint", token)==0) {
120 // Got a phyint token... Call phyint parser
121 IF_DEBUG log(LOG_DEBUG, 0, "Config: Got a phyint token.");
124 // Unparsable token
219 char *token; local
[all...]
/asus-wl-520gu-7.0.1.45/src/router/library/libupnp-1.2.1/upnp/src/inc/
H A Duri.h80 } token; typedef in typeref:struct:TOKEN
84 * text is a token pointing to the full string representation */
86 token text; //full host port
93 token scheme;
95 token pathquery;
96 token fragment;
186 * token * in ;
188 * Description : Function useful in debugging for printing a token.
195 void print_token( token * in);
201 * token * in
[all...]
H A Dhttp_client.h100 } token; typedef in typeref:struct:TOKEN
105 //text is a token pointing to
108 token text; //full host port
116 token scheme;
118 token pathquery;
119 token fragment;
134 token header;
135 token value;
140 token http_version;
141 token status_cod
[all...]
/asus-wl-520gu-7.0.1.45/src/router/busybox/libbb/
H A Dlibc5.c43 char *token; local
45 token = 0; /* Initialize to no token. */
55 if (*s != '\0') { /* We have a token. */
56 token = s;
57 *save_ptr = strpbrk(token, delim); /* Find token's end. */
59 /* Terminate the token and make SAVE_PTR point past it. */
65 return token;
/asus-wl-520gu-7.0.1.45/src/router/acl/libacl/
H A Dacl_from_text.c77 skip_tag_name(const char **text_p, const char *token) argument
79 size_t len = strlen(token);
83 if (strncmp(text, token, len) == 0) {
87 if (*text == *token) {
105 char *token = NULL; local
115 token = (char*)malloc(ep - *text_p + 1);
116 if (token == 0)
118 memcpy(token, *text_p, (ep - *text_p));
119 token[ep - *text_p] = '\0';
124 return token;
129 get_id(const char *token, id_t *id_p) argument
149 get_uid(const char *token, uid_t *uid_p) argument
165 get_gid(const char *token, gid_t *gid_p) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/router/samba/source/torture/
H A Dsamtest.h27 NT_USER_TOKEN *token; member in struct:samtest_state
/asus-wl-520gu-7.0.1.45/src/linux/linux/net/lapb/
H A Dlapb_in.c48 printk(KERN_DEBUG "lapb: (%p) S0 RX SABM(%d)\n", lapb->token, frame->pf);
52 printk(KERN_DEBUG "lapb: (%p) S0 TX DM(%d)\n", lapb->token, frame->pf);
57 printk(KERN_DEBUG "lapb: (%p) S0 TX UA(%d)\n", lapb->token, frame->pf);
60 printk(KERN_DEBUG "lapb: (%p) S0 -> S3\n", lapb->token);
77 printk(KERN_DEBUG "lapb: (%p) S0 RX SABME(%d)\n", lapb->token, frame->pf);
81 printk(KERN_DEBUG "lapb: (%p) S0 TX UA(%d)\n", lapb->token, frame->pf);
84 printk(KERN_DEBUG "lapb: (%p) S0 -> S3\n", lapb->token);
98 printk(KERN_DEBUG "lapb: (%p) S0 TX DM(%d)\n", lapb->token, frame->pf);
106 printk(KERN_DEBUG "lapb: (%p) S0 RX DISC(%d)\n", lapb->token, frame->pf);
107 printk(KERN_DEBUG "lapb: (%p) S0 TX UA(%d)\n", lapb->token, fram
[all...]
H A Dlapb_iface.c100 * Convert the integer token used by the device driver into a pointer
103 static lapb_cb *lapb_tokentostruct(void *token) argument
108 if (lapb->token == token)
144 int lapb_register(void *token, struct lapb_register_struct *callbacks) argument
148 if (lapb_tokentostruct(token) != NULL)
154 lapb->token = token;
164 int lapb_unregister(void *token) argument
168 if ((lapb = lapb_tokentostruct(token))
183 lapb_getparms(void *token, struct lapb_parms_struct *parms) argument
211 lapb_setparms(void *token, struct lapb_parms_struct *parms) argument
247 lapb_connect_request(void *token) argument
273 lapb_disconnect_request(void *token) argument
317 lapb_data_request(void *token, struct sk_buff *skb) argument
334 lapb_data_received(void *token, struct sk_buff *skb) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/router/dnsmasq/
H A Ddhcp.c19 static char *next_token (char *token, int buffsize, FILE * fp);
29 char token[MAXTOK], *dot; local
45 while ((next_token(token, MAXTOK, fp)))
47 if (strcmp(token, "lease") == 0)
52 if (next_token(token, MAXTOK, fp) &&
53 inet_pton(AF_INET, token, &host_address))
55 if (next_token(token, MAXTOK, fp) && *token == '{')
57 while (next_token(token, MAXTOK, fp) && *token !
168 next_token(char *token, int buffsize, FILE * fp) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/router/dproxy/
H A Dcache.c73 char *token; local
82 token = strtok( line, " ");
83 if( !strcasecmp( token, name) ){
84 token = strtok( NULL, " ");
85 while( isalnum(*token) || (*token=='.') )ip[i++] = *token++;
99 char *token; local
109 token = strtok( NULL, " ");
110 if( !strncasecmp( token, i
291 char *token; local
[all...]
/asus-wl-520gu-7.0.1.45/src/router/acl/examples/
H A Dget-acl.c26 char *acl_text, *default_acl_text, *token; local
66 token = strtok(default_acl_text, "\n");
67 while (token) {
68 printf("default:%s\n", token);
69 token = strtok(NULL, "\n");
/asus-wl-520gu-7.0.1.45/src/router/e2fsprogs-1.40.8/lib/blkid/
H A Dresolve.c56 * Locate a device name from a token (NAME=value string), or (name, value)
57 * pair. In the case of a token, value is ignored. If the "token" is not
61 char *blkid_get_devname(blkid_cache cache, const char *token, argument
69 if (!token)
78 printf("looking for %s%s%s %s\n", token, value ? "=" : "",
82 if (!strchr(token, '=')) {
83 ret = blkid_strdup(token);
86 blkid_parse_tag_string(token, &t, &v);
89 token
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/usb/host/
H A Duhci.h127 #define uhci_maxlen(token) ((token) >> 21)
129 #define uhci_toggle(token) (((token) >> TD_TOKEN_TOGGLE_SHIFT) & 1)
130 #define uhci_endpoint(token) (((token) >> 15) & 0xf)
131 #define uhci_devaddr(token) (((token) >> 8) & 0x7f)
132 #define uhci_devep(token) (((token) >>
[all...]
H A Dusb-uhci.h115 #define uhci_maxlen(token) ((token) >> 21)
116 #define uhci_toggle(token) (((token) >> TD_TOKEN_TOGGLE) & 1)
117 #define uhci_endpoint(token) (((token) >> 15) & 0xf)
118 #define uhci_devaddr(token) (((token) >> 8) & 0x7f)
119 #define uhci_devep(token) (((token) >>
[all...]
/asus-wl-520gu-7.0.1.45/src/router/samba/source/lib/
H A Dutil_seaccess.c31 static uint32 check_ace(SEC_ACE *ace, const NT_USER_TOKEN *token, uint32 acc_desired, argument
45 * If this ACE has no SID in common with the token,
50 if (!token_sid_in_ace( token, ace))
91 static BOOL get_max_access( SEC_ACL *the_acl, const NT_USER_TOKEN *token, uint32 *granted, argument
103 if (!token_sid_in_ace( token, ace))
213 BOOL se_access_check(const SEC_DESC *sd, const NT_USER_TOKEN *token, argument
226 if (!token)
227 token = &anonymous_token;
232 DEBUG(10,("se_access_check: requested access 0x%08x, for NT token with %u entries and first sid %s.\n",
233 (unsigned int)acc_desired, (unsigned int)token
[all...]
/asus-wl-520gu-7.0.1.45/src/router/samba/source/smbd/
H A Dsec_ctx.c30 NT_USER_TOKEN *token; member in struct:sec_ctx
258 ctx_p->token = dup_nt_token(sec_ctx_stack[sec_ctx_stack_ndx-1].token);
265 delete_nt_token(&ctx_p->token);
281 void set_sec_ctx(uid_t uid, gid_t gid, int ngroups, gid_t *groups, NT_USER_TOKEN *token) argument
290 debug_nt_user_token(DBGC_CLASS, 5, token);
302 if (token && (token == ctx_p->token))
305 delete_nt_token(&ctx_p->token);
[all...]
/asus-wl-520gu-7.0.1.45/src/router/infosvr/
H A Dinfosvr.c314 char *token; local
367 char *token; local
382 token= buf + strlen("Manufacturer=");
383 PRINT("Manufacturer token %s",token);
385 memccpy(mfr , token , '\n' , 31);
391 token= buf + strlen("Model=");
392 PRINT("Model token %s",token);
394 memccpy(model , token , '\
468 char *token; local
551 char *token; local
686 char *token; local
[all...]
/asus-wl-520gu-7.0.1.45/src/router/config/
H A Dzconf.y24 static bool zconf_endtoken(int token, int starttoken, int endtoken);
34 int token;
41 %token T_MAINMENU
42 %token T_MENU
43 %token T_ENDMENU
44 %token T_SOURCE
45 %token T_CHOICE
46 %token T_ENDCHOICE
47 %token T_COMMENT
48 %token T_CONFI
[all...]
/asus-wl-520gu-7.0.1.45/src/router/acl/setfacl/
H A Dparse.c47 const char *token)
49 size_t len = strlen(token);
53 if (strncmp(text, token, len) == 0) {
57 if (*text == *token) {
81 char *token = NULL, *t; local
92 token = (char*)malloc(ep - bp + 1);
93 if (token == NULL)
95 memcpy(token, bp, ep - bp);
98 t = token + (ep - bp - 1);
99 while (t >= token
45 skip_tag_name( const char **text_p, const char *token) argument
113 get_id( const char *token, id_t *id_p) argument
135 get_uid( const char *token, uid_t *uid_p) argument
156 get_gid( const char *token, gid_t *gid_p) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/scripts/
H A Dtkgen.c297 if ( cfg->token == token_define_bool || cfg->token == token_define_hex
298 || cfg->token == token_define_int || cfg->token == token_define_string
299 || cfg->token == token_define_tristate || cfg->token == token_unset )
301 if ( cfg->token == token_comment && line_num == -1 )
306 if ( cfg->token == token_string || cfg->token == token_mainmenu_option )
383 switch ( cfg->token )
[all...]
/asus-wl-520gu-7.0.1.45/src/router/samba/source/aparser/
H A Dmain.awk11 @include token.awk

Completed in 302 milliseconds

12345