OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ccontext
(Results
1 - 5
of
5
) sorted by null
/external/pcre/dist2/src/
pcre2_context.c
149
pcre2_compile_context *
ccontext
= PRIV(memctl_malloc)(
local
151
if (
ccontext
== NULL) return NULL;
152
*
ccontext
= PRIV(default_compile_context);
154
*((pcre2_memctl *)
ccontext
) = *((pcre2_memctl *)gcontext);
155
return
ccontext
;
210
pcre2_compile_context_copy(pcre2_compile_context *
ccontext
)
213
ccontext
->memctl.malloc(sizeof(pcre2_real_compile_context),
214
ccontext
->memctl.memory_data);
216
memcpy(new,
ccontext
, sizeof(pcre2_real_compile_context));
248
pcre2_compile_context_free(pcre2_compile_context *
ccontext
)
[
all
...]
pcre2_compile.c
[
all
...]
/external/selinux/libselinux/src/
fsetfilecon.c
15
char *
ccontext
= NULL;
local
17
if ((fgetfilecon_raw(fd, &
ccontext
) >= 0) &&
18
(strcmp(context,
ccontext
) == 0)) {
23
freecon(
ccontext
);
lsetfilecon.c
15
char *
ccontext
= NULL;
local
17
if ((lgetfilecon_raw(path, &
ccontext
) >= 0) &&
18
(strcmp(context,
ccontext
) == 0)) {
23
freecon(
ccontext
);
setfilecon.c
15
char *
ccontext
= NULL;
local
17
if ((getfilecon_raw(path, &
ccontext
) >= 0) &&
18
(strcmp(context,
ccontext
) == 0)) {
23
freecon(
ccontext
);
Completed in 369 milliseconds