Searched defs:private (Results 1 - 25 of 26) sorted by relevance

12

/external/e2fsprogs/lib/e2p/
H A Diod.c28 void * private)
69 if ((*func)(dir_name, de, private))
26 iterate_on_dir(const char * dir_name, int (*func) (const char *, struct dirent *, void *), void * private) argument
/external/openfst/
H A DAndroid.mk10 define private-function-all-cpp-files-under
23 LOCAL_SRC_FILES := $(call private-function-all-cpp-files-under, src/lib)
/external/webkit/Source/WebCore/bindings/objc/
H A DDOMInternal.h29 // it be private for clients outside WebKit.
30 #define private public macro
32 #undef private macro
/external/webkit/Source/WebKit/chromium/src/
H A DWebCache.cpp37 #define private public macro
39 #undef private macro
/external/e2fsprogs/debugfs/
H A Dncheck.c33 void *private)
35 struct inode_walk_struct *iw = (struct inode_walk_struct *) private;
29 ncheck_proc(struct ext2_dir_entry *dirent, int offset EXT2FS_ATTR((unused)), int blocksize EXT2FS_ATTR((unused)), char *buf EXT2FS_ATTR((unused)), void *private) argument
H A Dlsdel.c55 void *private)
57 struct lsdel_struct *lsd = (struct lsdel_struct *) private;
50 lsdel_proc(ext2_filsys fs, blk_t *block_nr, e2_blkcnt_t blockcnt EXT2FS_ATTR((unused)), blk_t ref_block EXT2FS_ATTR((unused)), int ref_offset EXT2FS_ATTR((unused)), void *private) argument
H A Ddump.c294 char *buf EXT2FS_ATTR((unused)), void *private)
298 const char *dumproot = private;
291 rdump_dirent(struct ext2_dir_entry *dirent, int offset EXT2FS_ATTR((unused)), int blocksize EXT2FS_ATTR((unused)), char *buf EXT2FS_ATTR((unused)), void *private) argument
/external/ppp/pppd/
H A Dchap-md5.c90 unsigned char *private)
88 chap_md5_make_response(unsigned char *response, int id, char *our_name, unsigned char *challenge, char *secret, int secret_len, unsigned char *private) argument
H A Dchap_ms.c324 unsigned char *private)
334 unsigned char *private)
345 (MS_Chap2Response *) response, private,
350 chapms2_check_success(unsigned char *msg, int len, unsigned char *private) argument
361 || memcmp(msg, private, MS_AUTH_RESPONSE_LENGTH)) {
322 chapms_make_response(unsigned char *response, int id, char *our_name, unsigned char *challenge, char *secret, int secret_len, unsigned char *private) argument
332 chapms2_make_response(unsigned char *response, int id, char *our_name, unsigned char *challenge, char *secret, int secret_len, unsigned char *private) argument
/external/qemu/distrib/sdl-1.2.15/src/video/wscons/
H A DSDL_wsconsvideo.h39 #define private (this->hidden) macro
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/
H A DCodeGeneratorTestRunner.pm141 private: label
/external/libvpx/libmkv/
H A DWebMElement.c83 unsigned char *private, unsigned long privateSize)
97 Ebml_SerializeData(glob, CodecPrivate, private, privateSize);
81 writeAudioTrack(EbmlGlobal *glob, unsigned int trackNumber, int flagLacing, char *codecId, double samplingFrequency, unsigned int channels, unsigned char *private, unsigned long privateSize) argument
/external/dbus/dbus/
H A Ddbus-bus.c426 dbus_bool_t private,
461 if (!private && bus_connections[type] != NULL)
479 if (private)
501 if (!private)
425 internal_bus_get(DBusBusType type, dbus_bool_t private, DBusError *error) argument
/external/openssh/
H A Dssh-add.c144 Key *private, *cert; local
178 private = key_parse_private(&keyblob, filename, "", &comment);
182 if (private == NULL && pass != NULL)
183 private = key_parse_private(&keyblob, filename, pass, NULL);
184 if (private == NULL) {
197 private = key_parse_private(&keyblob, filename, pass,
199 if (private != NULL)
208 if (ssh_add_identity_constrained(ac, private, comment, lifetime,
228 if (!key_equal_public(cert, private)) {
229 error("Certificate %s does not match private ke
[all...]
H A Dsshconnect1.c167 /* Decrypt the challenge using the private key. */
209 Key *public, *private; local
251 * load the private key. Try first with empty passphrase; if it
255 private = public;
257 private = key_load_private_type(KEY_RSA1, authfile, "", NULL,
259 if (private == NULL && !options.batch_mode && perm_ok) {
265 private = key_load_private_type(KEY_RSA1,
274 if (private != NULL || quit)
282 if (private == NULL) {
300 respond_to_rsa_challenge(challenge, private
[all...]
H A Dssh-agent.c118 /* private key table, one per protocol version */
162 /* return private key table for requested protocol version */
181 /* return matching private key for given public key */
275 Key *private = id->key; local
276 /* Decrypt the challenge using the private key. */
277 if (rsa_private_decrypt(challenge, challenge, private->rsa) <= 0)
546 fatal("%s: bad ECDSA private key", __func__);
1237 /* Create private directory for agent socket */
1240 perror("mkdtemp: private socket dir");
1334 /* deny core dumps, since memory contains unencrypted private key
[all...]
H A Dkey.c1016 RSA *private = RSA_new(); local
1019 if (private == NULL)
1025 if (!RSA_generate_key_ex(private, bits, f4, NULL))
1028 return private;
1034 DSA *private = DSA_new(); local
1036 if (private == NULL)
1038 if (!DSA_generate_parameters_ex(private, bits, NULL, 0, NULL,
1041 if (!DSA_generate_key(private))
1043 return private;
1080 * The group may be stored in a ASN.1 encoded private ke
1113 EC_KEY *private; local
[all...]
H A Dssh-keygen.c507 do_convert_from_ssh2(struct passwd *pw, Key **k, int *private) argument
526 *private = 1;
551 *k = *private ?
562 do_convert_from_pkcs8(Key **k, int *private) argument
602 do_convert_from_pem(Key **k, int *private) argument
630 fatal("%s: unrecognised raw private key format", __func__);
637 int private = 0, ok = 0; local
647 do_convert_from_ssh2(pw, &k, &private);
650 do_convert_from_pkcs8(&k, &private);
653 do_convert_from_pem(&k, &private);
866 Key *private, *public; local
1183 Key *private; local
1294 Key *private; local
1477 Key **keys = NULL, *public, *private = NULL; local
1920 Key *private, *public; local
[all...]
H A Dsshconnect2.c247 Key *key; /* public/private key */
250 int isprivate; /* key points to the private key */
1183 * we have already loaded the private key or
1184 * the private key is stored in external hardware
1188 /* load the private key from the file */
1316 Key *private; local
1325 private = key_load_private_type(KEY_UNSPEC, filename, "", NULL, &perm_ok);
1328 if (private == NULL) {
1336 private = key_load_private_type(KEY_UNSPEC,
1345 if (private !
1653 Key *private = NULL; local
[all...]
/external/stlport/stlport/stl/
H A D_ostream.c137 private: member in struct:_SPutBackC
/external/webkit/Source/WebCore/bindings/scripts/
H A DCodeGeneratorV8.pm363 private: label
2322 private: label
/external/clang/test/Preprocessor/
H A Dcxx_oper_keyword_ms_compat.cpp62 #define private macro
147 private
/external/libmtp/src/
H A Dlibusb-glue.c1029 memory_getfunc(PTPParams* params, void* private, argument
1033 PTPMemHandlerPrivate* priv = (PTPMemHandlerPrivate*)private;
1045 memory_putfunc(PTPParams* params, void* private, argument
1049 PTPMemHandlerPrivate* priv = (PTPMemHandlerPrivate*)private;
1061 /* init private struct for receiving data. */
1075 /* init private struct and put data in for sending data.
1095 /* free private struct + data */
H A Dptp.c212 memory_getfunc(PTPParams* params, void* private, argument
216 PTPMemHandlerPrivate* priv = (PTPMemHandlerPrivate*)private;
228 memory_putfunc(PTPParams* params, void* private, argument
232 PTPMemHandlerPrivate* priv = (PTPMemHandlerPrivate*)private;
244 /* init private struct for receiving data. */
258 /* init private struct and put data in for sending data.
278 /* free private struct + data */
305 fd_getfunc(PTPParams* params, void* private, argument
309 PTPFDHandlerPrivate* priv = (PTPFDHandlerPrivate*)private;
321 fd_putfunc(PTPParams* params, void* private, argument
[all...]
/external/mdnsresponder/mDNSCore/
H A DuDNS.c423 // send msg if we have a router and it is a private address
483 LogMsg("Double NAT (external NAT gateway address %.4a is also a private RFC 1918 address)", &ExtAddr);
735 // To work around this, if we find that the source address for our TCP connection is not a private address, we tell the Dot Mac
837 // an issue for private LLQs, because we skip parts 2 and 3 of the handshake. This is related to a bigger
963 // Private DNS operations -- private queries, private LLQs, private record updates and private service updates
1347 q->state = LLQ_SecondaryRequest; // Right now, for private DNS, we skip the four-way LLQ handshake
1515 // If the AuthInfo has the AutoTunnel field set, then we want private o
4233 mDNSBool private = mDNSfalse; local
[all...]

Completed in 483 milliseconds

12