OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pipe_in
(Results
1 - 2
of
2
) sorted by null
/external/ppp/pppd/plugins/
winbind.c
274
FILE *
pipe_in
;
local
325
pipe_in
= fdopen(child_in[1], "w");
333
fprintf(
pipe_in
, "Username:: %s\n", b64_username);
339
fprintf(
pipe_in
, "NT-Domain:: %s\n", b64_domain);
345
fprintf(
pipe_in
, "Full-Username:: %s\n", b64_full_username);
351
fprintf(
pipe_in
, "Password:: %s\n", b64_plaintext_password);
356
fprintf(
pipe_in
, "Request-User-Session-Key: yes\n");
363
fprintf(
pipe_in
, "LANMAN-Challenge: %s\n", challenge_hex);
373
fprintf(
pipe_in
, "LANMAN-response: %s\n", lm_hex_hash);
383
fprintf(
pipe_in
, "NT-response: %s\n", nt_hex_hash)
[
all
...]
/external/chromium_org/build/android/pylib/
chrome_test_server_spawner.py
129
self.
pipe_in
= None
143
assert self.host_port == 0 and self.pipe_out and self.
pipe_in
144
(in_fds, _, _) = select.select([self.
pipe_in
, ], [], [],
155
data_length = os.read(self.
pipe_in
, struct.calcsize('=L'))
162
port_json = os.read(self.
pipe_in
, data_length)
194
(self.
pipe_in
, self.pipe_out) = os.pipe()
258
os.close(self.
pipe_in
)
260
self.
pipe_in
= None
Completed in 3128 milliseconds