OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:acp
(Results
1 - 6
of
6
) sorted by null
/external/apache-http/src/org/apache/http/impl/conn/tsccm/
ThreadSafeClientConnManager.java
117
AbstractConnPool
acp
= new ConnPoolByRoute(connOperator, params);
local
120
acp
.enableConnectionGC();
122
return
acp
;
/external/ipsec-tools/src/racoon/
admin.c
362
struct admin_com_psk *
acp
;
local
367
acp
= (struct admin_com_psk *)
371
idtype =
acp
->id_type;
373
if ((id = vmalloc(
acp
->id_len)) == NULL) {
379
data = (char *)(
acp
+ 1);
382
if ((key = vmalloc(
acp
->key_len)) == NULL) {
390
data = (char *)(data +
acp
->id_len);
racoonctl.c
655
struct admin_com_psk *
acp
;
local
669
com_len += sizeof(*
acp
) + strlen(id) + 1 + strlen(key) + 1;
716
acp
= (struct admin_com_psk *)
719
acp
->id_type = IDTYPE_USERFQDN;
720
acp
->id_len = strlen(id) + 1;
721
acp
->key_len = strlen(key) + 1;
723
data = (char *)(
acp
+ 1);
726
data = (char *)(data +
acp
->id_len);
[
all
...]
/external/mesa3d/src/glsl/
opt_constant_propagation.cpp
82
this->
acp
= new(mem_ctx) exec_list;
103
exec_list *
acp
;
member in class:ir_constant_propagation_visitor
160
foreach_iter(exec_list_iterator, iter, *this->
acp
) {
209
exec_list *orig_acp = this->
acp
;
213
this->
acp
= new(mem_ctx) exec_list;
220
this->
acp
= orig_acp;
268
acp
->make_empty();
277
exec_list *orig_acp = this->
acp
;
281
this->
acp
= new(mem_ctx) exec_list;
285
/* Populate the initial
acp
with a constant of the original *
[
all
...]
opt_copy_propagation.cpp
75
this->
acp
= new(mem_ctx) exec_list;
96
exec_list *
acp
;
member in class:ir_copy_propagation_visitor
117
exec_list *orig_acp = this->
acp
;
121
this->
acp
= new(mem_ctx) exec_list;
128
this->
acp
= orig_acp;
152
* Replaces dereferences of
ACP
RHS variables with
ACP
LHS variables.
166
foreach_iter(exec_list_iterator, iter, *this->
acp
) {
197
acp
->make_empty();
206
exec_list *orig_acp = this->
acp
;
[
all
...]
/external/wpa_supplicant_8/src/ap/
wmm.c
84
struct hostapd_wmm_ac_params *
acp
=
local
87
ac->aci_aifsn = wmm_aci_aifsn(
acp
->aifs,
88
acp
->admission_control_mandatory,
90
ac->cw = wmm_ecw(
acp
->cwmin,
acp
->cwmax);
91
ac->txop_limit = host_to_le16(
acp
->txop_limit);
Completed in 61 milliseconds