Searched refs:keystr (Results 1 - 25 of 27) sorted by relevance

12

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/testsuite/printing/
H A Dvlp.c53 fstring keystr; local
56 slprintf(keystr, sizeof(keystr) - 1, "LPQ/%s", printer);
57 data = tdb_fetch_by_string(tdb, keystr);
68 fstring keystr; local
70 slprintf(keystr, sizeof(keystr) - 1, "LPQ/%s", printer);
72 tdb_store_by_string(tdb, keystr, job_list,
80 fstring keystr; local
83 slprintf(keystr, sizeo
105 fstring keystr; local
114 fstring keystr; local
214 fstring keystr; local
[all...]
H A Dpsec.c164 fstring keystr, sidstr, tdb_path; local
185 slprintf(keystr, sizeof(keystr) - 1, "SECDESC/%s", printer);
195 if (tdb_prs_fetch(tdb, keystr, &ps, mem_ctx) != 0) {
266 fstring line, keystr, tdb_path; local
364 slprintf(keystr, sizeof(keystr) - 1, "SECDESC/%s", printer);
366 if (!tdb_prs_store(tdb, keystr, &ps)==0) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/lib/
H A Dgencache.c97 * @param keystr string that represents a key of this entry
105 BOOL gencache_set(const char *keystr, const char *value, time_t timeout) argument
112 SMB_ASSERT(keystr && value);
120 keybuf.dptr = SMB_STRDUP(keystr);
121 keybuf.dsize = strlen(keystr)+1;
141 * @param keystr string that represents a key of this entry
149 BOOL gencache_set_only(const char *keystr, const char *valstr, time_t timeout) argument
157 SMB_ASSERT(keystr && valstr);
165 gencache_get(keystr, &old_valstr, &old_timeout);
170 = %s\n", keystr, old_valst
202 gencache_del(const char *keystr) argument
235 gencache_get(const char *keystr, char **valstr, time_t *timeout) argument
308 char *keystr = NULL, *valstr = NULL, *entry = NULL; local
[all...]
H A Dwins_srv.c73 char *keystr = NULL, *wins_ip_addr = NULL, *src_ip_addr = NULL; local
83 if (asprintf(&keystr, WINS_SRV_FMT, wins_ip_addr, src_ip_addr) == -1) {
91 return keystr;
100 char *keystr = wins_srv_keystr(wins_ip, src_ip); local
105 result = gencache_get(keystr, NULL, NULL);
106 SAFE_FREE(keystr);
120 char *keystr = wins_srv_keystr(wins_ip, src_ip); local
122 gencache_del(keystr);
123 SAFE_FREE(keystr);
134 char *keystr; local
[all...]
H A Dadt_tree.c384 char *keystr, *base, *str, *p; local
409 keystr = SMB_STRDUP( key+1 );
411 keystr = SMB_STRDUP( key );
413 if ( !keystr ) {
420 p = keystr;
458 SAFE_FREE( keystr );
H A Dprivileges.c227 fstring keystr; local
241 fstr_sprintf( keystr, "%s%s", PRIVPREFIX, sid_string_static(sid) );
242 key.dptr = keystr;
243 key.dsize = strlen(keystr) + 1;
268 fstring keystr; local
279 fstr_sprintf( keystr, "%s%s", PRIVPREFIX, sid_string_static(sid) );
280 key.dptr = keystr;
281 key.dsize = strlen(keystr) + 1;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/utils/
H A Dnet_cache.c37 static void print_cache_entry(const char* keystr, const char* datastr, argument
59 d_printf("Key: %s\t Timeout: %s\t Value: %s %s\n", keystr,
63 static void delete_cache_entry(const char* keystr, const char* datastr, argument
66 if (!gencache_del(keystr))
67 d_printf("Couldn't delete entry! key = %s\n", keystr);
135 const char *keystr, *datastr, *timeout_str; local
143 keystr = argv[0];
154 if (gencache_set(keystr, datastr, timeout)) {
175 const char *keystr, *datastr, *timeout_str; local
183 keystr
214 const char *keystr = argv[0]; local
239 const char* keystr = argv[0]; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/rc4/
H A Drc4.c76 char *infile=NULL,*outfile=NULL,*keystr=NULL; local
100 keystr= *(++argv);
153 if (keystr == NULL)
162 keystr=buf;
165 EVP_Digest((unsigned char *)keystr,(unsigned long)strlen(keystr),md,NULL,EVP_md5());
166 OPENSSL_cleanse(keystr,strlen(keystr));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/rc4/
H A Drc4.c77 char *infile=NULL,*outfile=NULL,*keystr=NULL; local
101 keystr= *(++argv);
154 if (keystr == NULL)
163 keystr=buf;
166 EVP_Digest((unsigned char *)keystr,strlen(keystr),md,NULL,EVP_md5(),NULL);
167 OPENSSL_cleanse(keystr,strlen(keystr));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/bugs/
H A Dstream.c84 static char *keystr="01234567"; local
90 des_set_key((des_cblock *)keystr,ks);
109 static char *keystr="0123456789abcdef"; local
114 RC4_set_key(&key,16,keystr);
123 RC4_set_key(&key,16,keystr);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/bugs/
H A Dstream.c84 static char *keystr="01234567"; local
90 des_set_key((des_cblock *)keystr,ks);
109 static char *keystr="0123456789abcdef"; local
114 RC4_set_key(&key,16,keystr);
123 RC4_set_key(&key,16,keystr);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/libsmb/
H A Dsamlogon_cache.c115 fstring keystr; local
131 slprintf(keystr, sizeof(keystr), "%s", sid_string_static(&user_sid));
133 DEBUG(10,("netsamlogon_cache_store: SID [%s]\n", keystr));
155 if (tdb_store_bystring(netsamlogon_tdb, keystr, data, TDB_REPLACE) != -1)
174 fstring keystr; local
183 slprintf(keystr, sizeof(keystr), "%s", sid_string_static(user_sid));
184 DEBUG(10,("netsamlogon_cache_get: SID [%s]\n", keystr));
185 key.dptr = keystr;
[all...]
H A Dnamecache.c98 char *keystr; local
99 asprintf(&keystr, NBTKEY_FMT, strupper_static(name), name_type);
101 return keystr;
255 char *keystr; local
257 asprintf(&keystr, "NBT/%s#%02X.%02X.%s",
259 return keystr;
H A Dtrustdom_cache.c93 char* keystr = NULL; local
94 asprintf(&keystr, TDOMKEY_FMT, strupper_static(name));
96 return keystr;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/tdb/
H A Dtdbutil.c170 int32 tdb_fetch_int32(TDB_CONTEXT *tdb, const char *keystr) argument
172 return tdb_fetch_int32_byblob(tdb, keystr, strlen(keystr) + 1);
180 int tdb_store_int32_byblob(TDB_CONTEXT *tdb, const char *keystr, size_t len, int32 v) argument
182 TDB_DATA key = make_tdb_data(keystr, len);
198 int tdb_store_int32(TDB_CONTEXT *tdb, const char *keystr, int32 v) argument
200 return tdb_store_int32_byblob(tdb, keystr, strlen(keystr) + 1, v);
229 BOOL tdb_fetch_uint32(TDB_CONTEXT *tdb, const char *keystr, uint32 *value) argument
231 return tdb_fetch_uint32_byblob(tdb, keystr, strle
239 tdb_store_uint32_byblob(TDB_CONTEXT *tdb, const char *keystr, size_t len, uint32 value) argument
261 tdb_store_uint32(TDB_CONTEXT *tdb, const char *keystr, uint32 value) argument
270 tdb_store_bystring(TDB_CONTEXT *tdb, const char *keystr, TDB_DATA data, int flags) argument
282 tdb_fetch_bystring(TDB_CONTEXT *tdb, const char *keystr) argument
293 tdb_delete_bystring(TDB_CONTEXT *tdb, const char *keystr) argument
304 tdb_change_int32_atomic(TDB_CONTEXT *tdb, const char *keystr, int32 *oldval, int32 change_val) argument
345 tdb_change_uint32_atomic(TDB_CONTEXT *tdb, const char *keystr, uint32 *oldval, uint32 change_val) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/passdb/
H A Dpdb_tdb.c397 fstring keystr; local
410 slprintf(keystr, sizeof(keystr)-1, "%s%s", USERPREFIX, name);
411 key.dptr = keystr;
412 key.dsize = strlen(keystr) + 1;
443 DEBUGADD(5, (" Key: %s\n", keystr));
473 fstring keystr; local
482 slprintf(keystr, sizeof(keystr)-1, "%s%.8x", RIDPREFIX, rid);
483 key.dptr = keystr;
528 fstring keystr; local
586 fstring keystr; local
[all...]
H A Dsecrets.c217 static fstring keystr; local
219 slprintf(keystr,sizeof(keystr)-1,"%s/%s",
221 strupper_m(keystr);
223 return keystr;
235 static pstring keystr; local
237 pstr_sprintf(keystr, "%s/%s", SECRETS_DOMTRUST_ACCT_PASS, domain);
238 strupper_m(keystr);
240 return keystr;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/sam/
H A Didmap_tdb.c170 fstring keystr; local
178 slprintf(keystr, sizeof(keystr), "UID %lu", (unsigned long)id.uid);
181 slprintf(keystr, sizeof(keystr), "GID %lu", (unsigned long)id.gid);
187 key.dptr = keystr;
188 key.dsize = strlen(keystr) + 1;
190 DEBUG(10,("internal_get_sid_from_id: fetching record %s\n", keystr ));
196 DEBUG(10,("internal_get_sid_from_id: fetching record %s -> %s\n", keystr, data.dptr ));
211 fstring keystr; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/smbd/
H A Dsession.c57 fstring keystr; local
81 slprintf(keystr, sizeof(keystr)-1, "ID/%d", i);
82 key.dptr = keystr;
83 key.dsize = strlen(keystr)+1;
97 slprintf(keystr, sizeof(keystr)-1, "ID/%lu/%u",
104 key.dptr = keystr;
105 key.dsize = strlen(keystr)+1;
154 vuser->session_keystr = SMB_STRDUP(keystr);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/usb/storage/
H A Ddebug.c166 const char *what, *keystr; local
168 keystr = scsi_sense_key_string(key);
171 if (keystr == NULL)
172 keystr = "(Unknown Key)";
176 US_DEBUGP("%s: ", keystr);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/registry/
H A Dreg_printing.c100 char *keystr; local
140 keystr = key2;
141 reg_split_path( keystr, &base, &new_path );
189 keystr = new_path;
190 reg_split_path( keystr, &base, &new_path );
231 char *keystr; local
261 keystr = key2;
262 reg_split_path( keystr, &base, &new_path );
269 keystr = new_path;
270 reg_split_path( keystr,
469 char *keystr, *key2 = NULL; local
525 char *keystr, *key2 = NULL; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/printing/
H A Dprinting.c815 fstring keystr; local
822 slprintf(keystr, sizeof(keystr)-1, "UPDATING/%s", sharename);
823 key.dptr = keystr;
824 key.dsize = strlen(keystr);
849 fstring keystr; local
860 slprintf(keystr, sizeof(keystr)-1, "UPDATING/%s", sharename);
861 key.dptr = keystr;
862 key.dsize = strlen(keystr);
1072 fstring keystr, cachestr; local
1213 fstring keystr; local
2059 fstring keystr; local
2557 fstring keystr; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/nsswitch/
H A Dwinbindd_acct.c371 char *keystr; local
381 keystr = acct_userkey_byname( name );
383 data = tdb_fetch_bystring( account_tdb, keystr );
403 char *keystr; local
417 keystr = acct_userkey_byname( data.dptr );
421 data = tdb_fetch_bystring( account_tdb, keystr );
500 char *keystr; local
510 keystr = acct_groupkey_byname( name );
512 data = tdb_fetch_bystring( account_tdb, keystr );
532 char *keystr; local
[all...]
H A Dwinbindd_util.c795 fstring keystr; local
830 sid_to_string(keystr, &sid);
831 key2.dptr = keystr;
832 key2.dsize = strlen(keystr) + 1;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/db/repquote/
H A DRepQuoteExample.java386 String keystr = new String
390 System.out.println("\t"+keystr+"\t"+datastr);

Completed in 481 milliseconds

12