HomeSort by relevance Sort by last modified time
    Searched defs:new (Results 176 - 200 of 341) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/ipsec-tools/src/racoon/
policy.c 292 struct secpolicy *new; local
294 new = racoon_calloc(1, sizeof(*new));
295 if (new == NULL)
298 return new;
381 inssp(new)
382 struct secpolicy *new;
388 if (new->spidx.priority < p->spidx.priority) {
389 TAILQ_INSERT_BEFORE(p, new, chain);
395 TAILQ_INSERT_TAIL(&sptree, new, chain)
428 struct ipsecrequest *new; local
    [all...]
sainfo.c 166 struct sainfo *new; local
168 new = racoon_calloc(1, sizeof(*new));
169 if (new == NULL)
172 new->lifetime = IPSECDOI_ATTR_SA_LD_SEC_DEFAULT;
173 new->lifebyte = IPSECDOI_ATTR_SA_LD_KB_MAX;
175 return new;
201 inssainfo(new)
202 struct sainfo *new;
204 LIST_INSERT_HEAD(&sitree, new, chain)
235 struct sainfoalg *new; local
    [all...]
schedule.c 124 * add new schedule to schedule table.
133 struct sched *new; local
135 new = (struct sched *)racoon_malloc(sizeof(*new));
136 if (new == NULL)
139 memset(new, 0, sizeof(*new));
140 new->func = func;
141 new->param = param;
143 new->id = id++
232 caddr_t new; local
    [all...]
  /external/libsepol/src/
ebitmap.c 20 ebitmap_node_t *n1, *n2, *new, *prev; local
28 new = (ebitmap_node_t *) malloc(sizeof(ebitmap_node_t));
29 if (!new) {
33 memset(new, 0, sizeof(ebitmap_node_t));
35 new->startbit = n1->startbit;
36 new->map = n1->map | n2->map;
40 new->startbit = n1->startbit;
41 new->map = n1->map;
44 new->startbit = n2->startbit;
45 new->map = n2->map
173 ebitmap_node_t *n, *new, *prev; local
250 ebitmap_node_t *n, *prev, *new; local
    [all...]
users.c 122 int new = 0; local
148 /* Otherwise, create a new one */
154 new = 1;
226 /* If there are no errors, and this is a new user, add the user to policy */
227 if (new) {
280 if (new && usrdatum) {
  /external/libsepol/tests/
test-common.c 188 unsigned int i, j, new, found = 0; local
203 new = 0;
207 new = 1;
210 if (new == 0) {
213 CU_ASSERT(new == 1);
229 int j, new, found = 0; local
246 new = 0;
250 new = 1;
253 if (new == 0) {
256 CU_ASSERT(new == 1)
    [all...]
  /external/libvpx/libvpx/examples/includes/HTML-Toc-0.91/
Toc.pm 63 #--- HTML::Toc::new() ---------------------------------------------------------
66 sub new { subroutine
88 } # new()
97 # returns: 0 if new level equals previous level, 1 if new level exceeds
98 # previous level, -1 if new level is smaller then previous level.
118 # Bias to new level being smaller than previous level;
236 # Yes, new level is greater than previous level;
244 # Make sure, new level is increased one step only
271 # Yes, new level is smaller than previous level
    [all...]
TocUpdator.pm 35 #--- HTML::TocUpdator::new() --------------------------------------------------
38 sub new { subroutine
41 my $self = $aType->SUPER::new;
54 } # new()
161 # note: Updating actually means: deleting the old ToC and inserting a new
186 my $tokenUpdateBeginParser = HTML::_TokenUpdateParser->new(
190 my $tokenUpdateEndParser = HTML::_TokenUpdateParser->new(
603 #--- HTML::_TokenUpdateParser::new() ------------------------------------------
606 sub new { subroutine
610 my $self = $aType->SUPER::new;
    [all...]
  /external/skia/include/core/
SkPostConfig.h 95 #define SkNEW(type_name) (new type_name)
96 #define SkNEW_ARGS(type_name, args) (new type_name args)
97 #define SkNEW_ARRAY(type_name, count) (new type_name[(count)])
98 #define SkNEW_PLACEMENT(buf, type_name) (new (buf) type_name)
100 (new (buf) type_name args)
264 void * operator new(
271 void * operator new[](
286 #define DEBUG_CLIENTBLOCK new( _CLIENT_BLOCK, __FILE__, __LINE__, 0)
288 #define DEBUG_CLIENTBLOCK new( _CLIENT_BLOCK, __FILE__, __LINE__)
290 #define new DEBUG_CLIENTBLOC macro
    [all...]
  /external/stlport/src/
cxa.c 72 struct exit_function *new = __new_exitfn (); local
74 if ( new == NULL )
77 new->flavor = ef_cxa;
78 new->func.cxa.fn = (void (*) (void *, int)) func;
79 new->func.cxa.arg = arg;
80 new->func.cxa.dso_handle = d;
  /external/valgrind/main/coregrind/m_gdbserver/
regcache.c 227 Bool new; local
228 VG_(dmemcpy) (register_data_for_supply (n, 0, &new),
230 if (new)
236 Bool new; local
239 VG_(dmemcpy) (register_data_for_supply (n, 0, &new),
241 if (new)
  /external/webkit/Source/JavaScriptCore/runtime/
ArgList.h 160 // Prohibits new / delete, which would break GC.
163 void* operator new(size_t size)
172 void* operator new[](size_t);
175 void* operator new(size_t, void*);
  /external/webkit/Source/WebCore/bindings/js/
JSDOMWindowShell.cpp 64 Strong<JSDOMWindowPrototype> prototype(*JSDOMWindow::commonJSGlobalData(), new JSDOMWindowPrototype(*JSDOMWindow::commonJSGlobalData(), 0, prototypeStructure));
67 JSDOMWindow* jsDOMWindow = new (JSDOMWindow::commonJSGlobalData()) JSDOMWindow(*JSDOMWindow::commonJSGlobalData(), structure, domWindow, this);
162 void* JSDOMWindowShell::operator new(size_t size)
  /external/webkit/Source/WebCore/bindings/scripts/
CodeGenerator.pm 97 sub new subroutine
133 $codeGenerator = $ifaceName->new($object, $useOutputDir, $useOutputHeadersDir, $useLayerOnTop, $preprocessor, $writeDependencies, $verbose);
294 my $parser = IDLParser->new(1);
CodeGeneratorGObject.pm 41 sub new { subroutine
    [all...]
  /external/webkit/Source/WebCore/
config.h 115 // Helps us catch if anyone uses new or delete by accident in code and doesn't include "config.h".
116 #undef new macro
159 // New theme
  /external/webkit/Source/WebCore/inspector/
CodeGeneratorInspector.pm 245 sub new subroutine
884 InspectorBackend = new InspectorBackendStub();
    [all...]
  /external/webkit/Source/WebCore/rendering/
InlineBox.cpp 68 void* InlineBox::operator new(size_t sz, RenderArena* renderArena) throw()
  /external/webkit/Tools/Scripts/webkitpy/common/system/
autoinstall.py 38 import new namespace
245 # Append existing Error message to new Error.
325 """Prepare a package for use, if necessary, and return the new path.
353 # Append existing Error message to new Error.
477 # Append existing Error message to new Error.
  /ndk/sources/cxx-stl/stlport/src/
cxa.c 72 struct exit_function *new = __new_exitfn (); local
74 if ( new == NULL )
77 new->flavor = ef_cxa;
78 new->func.cxa.fn = (void (*) (void *, int)) func;
79 new->func.cxa.arg = arg;
80 new->func.cxa.dso_handle = d;
  /ndk/sources/host-tools/make-3.81/
strcache.c 45 struct strcache *new; local
46 new = (struct strcache *) xmalloc (sizeof (*new) + bufsize);
47 new->end = new->buffer;
48 new->count = 0;
49 new->bytesfree = bufsize;
51 new->next = strcache;
52 strcache = new;
54 return new;
    [all...]
  /ndk/tests/device/test-stlport_shared-exception/jni/
arraynew.cpp 7 #include <new>
11 void* operator new[](size_t s) throw (std::bad_alloc)
21 void* a = new T[7];
30 void* a = new (p) T[13];
38 void* a = new T[11];
68 void* a = new (p) T[11];
112 struct V { void *operator new[] (size_t s, void *p)
125 // new.
142 // There should be a cookie when using a non-global placement new.
  /ndk/tests/device/test-stlport_static-exception/jni/
arraynew.cpp 7 #include <new>
11 void* operator new[](size_t s) throw (std::bad_alloc)
21 void* a = new T[7];
30 void* a = new (p) T[13];
38 void* a = new T[11];
68 void* a = new (p) T[11];
112 struct V { void *operator new[] (size_t s, void *p)
125 // new.
142 // There should be a cookie when using a non-global placement new.
  /system/core/sh/
cd.c 244 char *new; local
270 STARTSTACKSTR(new);
274 STPUTC(*p++, new);
276 STUNPUTC(new);
280 while (new > stackblock() && (STUNPUTC(new), *new) != '/');
282 STPUTC('/', new);
284 STPUTC(*p++, new);
287 if (new == stackblock()
    [all...]
  /external/llvm/include/llvm/MC/
MCContext.h 185 /// to process a new module
193 /// CreateTempSymbol - Create and return a new assembler temporary symbol
417 // operator new and delete aren't allowed inside namespaces.
419 /// @brief Placement new for using the MCContext's allocator.
421 /// This placement form of operator new uses the MCContext's allocator for
422 /// obtaining memory. It is a non-throwing new, which means that it returns
428 /// IntegerLiteral *Ex = new (Context) IntegerLiteral(arguments);
430 /// IntegerLiteral *Ex2 = new (Context, 8) IntegerLiteral(arguments);
441 inline void *operator new(size_t Bytes, llvm::MCContext &C,
445 /// @brief Placement delete companion to the new above
    [all...]

Completed in 1474 milliseconds

1 2 3 4 5 6 78 91011>>