Searched refs:who (Results 1 - 25 of 121) sorted by relevance

12345

/external/chromium_org/tools/gn/tutorial/
H A Dhello.cc9 void Hello(const char* who) { argument
10 printf("Hello, %s.\n", who);
H A Dhello.h8 void Hello(const char* who);
/external/fio/os/windows/posix/include/sys/
H A Dresource.h17 int getrusage(int who, struct rusage *r_usage);
/external/iproute2/genl/
H A Dgenl_utils.h12 int (*print_genlopt)(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg);
/external/iproute2/tc/
H A Dtc_common.h10 extern int print_action(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg);
11 extern int print_filter(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg);
12 extern int print_qdisc(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg);
13 extern int print_class(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg);
H A Dtc_monitor.c38 int accept_tcmsg(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg) argument
43 print_filter(who, n, arg);
47 print_class(who, n, arg);
51 print_qdisc(who, n, arg);
56 print_action(who, n, arg);
/external/valgrind/main/coregrind/
H A Dpub_core_scheduler.h63 extern void VG_(acquire_BigLock) ( ThreadId tid, const HChar* who );
68 extern void VG_(acquire_BigLock_LL) ( const HChar* who );
79 ThreadStatus state, const HChar* who );
82 extern void VG_(release_BigLock_LL) ( const HChar* who );
H A Dpub_core_debuglog.h59 void VG_(debugLog_startup) ( Int level, const HChar* who );
H A Dpub_core_transtab.h102 const HChar* who );
/external/iproute2/ip/
H A Dip_common.h2 extern int print_linkinfo(const struct sockaddr_nl *who,
5 extern int print_addrinfo(const struct sockaddr_nl *who,
8 extern int print_addrlabel(const struct sockaddr_nl *who,
10 extern int print_neigh(const struct sockaddr_nl *who,
12 extern int print_ntable(const struct sockaddr_nl *who,
22 extern int print_route(const struct sockaddr_nl *who,
24 extern int print_prefix(const struct sockaddr_nl *who,
26 extern int print_rule(const struct sockaddr_nl *who,
H A Dipmonitor.c37 int accept_msg(const struct sockaddr_nl *who, argument
48 print_route(who, n, arg);
52 ll_remember_index(who, n, NULL);
55 print_linkinfo(who, n, arg);
61 print_addrinfo(who, n, arg);
67 print_addrlabel(who, n, arg);
73 print_neigh(who, n, arg);
79 print_prefix(who, n, arg);
85 print_rule(who, n, arg);
H A Dxfrm_monitor.c45 static int xfrm_acquire_print(const struct sockaddr_nl *who, argument
106 static int xfrm_state_flush_print(const struct sockaddr_nl *who, argument
136 static int xfrm_policy_flush_print(const struct sockaddr_nl *who, argument
174 static int xfrm_report_print(const struct sockaddr_nl *who, argument
239 static int xfrm_ae_print(const struct sockaddr_nl *who, argument
270 static int xfrm_mapping_print(const struct sockaddr_nl *who, argument
292 static int xfrm_accept_msg(const struct sockaddr_nl *who, argument
305 xfrm_state_print(who, n, arg);
311 xfrm_policy_print(who, n, arg);
314 xfrm_acquire_print(who,
[all...]
/external/chromium_org/third_party/re2/benchlog/
H A Dmktable46 foreach my $who ("PCRE", "RE2") {
49 my $key = sprintf("%s%s/%s", $name, $who, $sizes[$i]);
55 $lastx{$who} = $i;
56 $lasty{$who} = $val;
59 my $color = $color{$who};
60 printf JGR "marktype none color $color linethickness 2 linetype solid label : $who\n";
78 foreach my $who ("PCRE", "RE2") {
79 $x1 = $lastx{$who};
80 $y1 = $lasty{$who};
87 printf JGR "newstring x $x1 y $y1 hjl $v : $who\
[all...]
/external/regex-re2/benchlog/
H A Dmktable46 foreach my $who ("PCRE", "RE2") {
49 my $key = sprintf("%s%s/%s", $name, $who, $sizes[$i]);
55 $lastx{$who} = $i;
56 $lasty{$who} = $val;
59 my $color = $color{$who};
60 printf JGR "marktype none color $color linethickness 2 linetype solid label : $who\n";
78 foreach my $who ("PCRE", "RE2") {
79 $x1 = $lastx{$who};
80 $y1 = $lasty{$who};
87 printf JGR "newstring x $x1 y $y1 hjl $v : $who\
[all...]
/external/iproute2/include/
H A Dll_map.h4 extern int ll_remember_index(const struct sockaddr_nl *who,
/external/chromium_org/chrome/browser/resources/cryptotoken/
H A Dgnubbies.js199 * @param {*} who Client of the device.
203 Gnubbies.prototype.addClient = function(which, who, cb) {
208 function opened(gnubby, who, cb) {
211 self.removeClient(gnubby, who);
214 gnubby.registerClient(who);
242 this.removeClient(null, who);
263 opened(gnubby, client.who, client.cb);
271 opened(gnubby, who, cb);
273 var opener = {who: who, c
[all...]
H A Dllgnubby.js85 * @param {*} who The client.
87 llGnubby.prototype.registerClient = function(who) {};
91 * @param {*} who The client.
95 llGnubby.prototype.deregisterClient = function(who) {};
98 * @param {*} who The client.
99 * @return {boolean} Whether this device has who as a client.
101 llGnubby.prototype.hasClient = function(who) {};
H A Dllhidgnubby.js104 * @param {*} who The client.
106 llHidGnubby.prototype.registerClient = function(who) {
108 if (this.clients[i] === who) return; // Already registered.
110 this.clients.push(who);
119 * @param {*} who The client.
124 llHidGnubby.prototype.deregisterClient = function(who) {
130 if (client !== who) this.clients.push(client);
136 * @param {*} who The client.
137 * @return {boolean} Whether this device has who as a client.
139 llHidGnubby.prototype.hasClient = function(who) {
[all...]
H A Dllusbgnubby.js177 * @param {*} who The client.
179 llUsbGnubby.prototype.registerClient = function(who) {
181 if (this.clients[i] === who) return; // Already registered.
183 this.clients.push(who);
188 * @param {*} who The client.
193 llUsbGnubby.prototype.deregisterClient = function(who) {
199 if (client !== who) this.clients.push(client);
205 * @param {*} who The client.
206 * @return {boolean} Whether this device has who as a client.
208 llUsbGnubby.prototype.hasClient = function(who) {
[all...]
/external/libnl/include/netlink/genl/
H A Dmngt.h27 struct sockaddr_nl * who; member in struct:genl_info
/external/valgrind/main/include/
H A Dpub_tool_mallocfree.h55 extern void VG_(out_of_memory_NORETURN) ( const HChar* who, SizeT szB );
/external/libnl/lib/genl/
H A Dmngt.c93 static int genl_msg_parser(struct nl_cache_ops *ops, struct sockaddr_nl *who, argument
120 .who = who,
/external/valgrind/main/none/tests/amd64/
H A DredundantRexW.c39 void pp_XMMRegs ( char* who, XMMRegs* regs ) { argument
41 printf ("%s (xmms in order [15..0]) {\n", who );
50 void pp_Mem ( char* who, Mem* mem ) { argument
52 printf ("%s (dqws in order [15 .. 0]) {\n", who );
95 void after_test ( char* who, XMMRegs* regs, Mem* mem ) { argument
102 sprintf(s, "after \"%s\"", who );
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/source/
H A Dfilter_functions.c135 double *weo, *who, opol[PITCH_WLPCORDER+1], ext[PITCH_WLPCWINLEN]; local
153 who=dp2;
173 WebRtcIsac_ZeroPoleFilter(inp, apolr, opol, PITCH_SUBFRAME_LEN, PITCH_WLPCORDER, who);
178 who+=PITCH_SUBFRAME_LEN;
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
H A Dfilter_functions.c135 double *weo, *who, opol[PITCH_WLPCORDER+1], ext[PITCH_WLPCWINLEN]; local
153 who=dp2;
173 WebRtcIsac_ZeroPoleFilter(inp, apolr, opol, PITCH_SUBFRAME_LEN, PITCH_WLPCORDER, who);
178 who+=PITCH_SUBFRAME_LEN;

Completed in 779 milliseconds

12345