HomeSort by relevance Sort by last modified time
    Searched defs:new (Results 376 - 400 of 504) sorted by null

<<11121314151617181920>>

  /external/dnsmasq/src/
network.c 394 * to create just a single new listener dynamically when our interface
397 * iface - input of the new interface details to listen on
398 * listeners - output. Creates a new struct listener and inserts at head of the list
409 struct listener *new = safe_malloc(sizeof(struct listener)); local
410 new->family = iface->addr.sa.sa_family;
411 new->iface = iface;
412 new->next = *listeners;
413 new->tftpfd = -1;
414 new->tcpfd = -1;
415 new->fd = -1
847 struct server *new, *tmp, *ret = NULL; local
    [all...]
  /external/ipsec-tools/src/racoon/
grabmyaddr.c 709 struct myaddrs *new; local
711 new = dupmyaddr(p);
712 new->udp_encap = 1;
763 struct myaddrs *new; local
765 new = racoon_calloc(1, sizeof(*new));
766 if (new == NULL) {
772 new->next = NULL;
773 new->addr = NULL;
775 return new;
781 struct myaddrs *new; local
    [all...]
handler.c 255 * create new isakmp Phase 1 status record to handle isakmp in Phase1
262 /* create new iph1 */
281 * delete new isakmp Phase 1 status record to handle isakmp in Phase1
382 * create new isakmp Phase 1 status record to handle isakmp in Phase1
572 * create new isakmp Phase 2 status record to handle isakmp in Phase2
579 /* create new iph2 */
648 * delete new isakmp Phase 2 status record to handle isakmp in Phase2
682 * create new isakmp Phase 2 status record to handle isakmp in Phase2
811 * create new isakmp Phase 2 status record to handle isakmp in Phase2
817 struct contacted *new; local
936 struct recvdpkt *new = NULL; local
    [all...]
sockmisc.c 840 struct sockaddr *new; local
842 if ((new = racoon_calloc(1, len)) == NULL) {
850 new->sa_family = AF_INET6;
852 new->sa_family = AF_INET;
855 new->sa_len = len;
858 return new;
  /external/iptables/iptables/
iptables-xml.c 74 /* global new argv and argc */
538 unsigned int new = 0; local
542 while (new < newargc && old < oldargc) {
543 if (isTarget(oldargv[old]) && isTarget(newargv[new])) {
559 // break when old!=new
560 if (strcmp(oldargv[old], newargv[new]) != 0) {
566 new++;
687 /* New table */
702 /* New chain. */
716 DEBUGP("Creating new chain '%s'\n", chain)
    [all...]
  /external/libnl/lib/
addr.c 160 * Allocate new abstract address object.
179 * Allocate new abstract address object based on a binary address.
209 * family and allocates a new abstract address based on it.
422 struct nl_addr *new; local
424 new = nl_addr_build(addr->a_family, addr->a_addr, addr->a_len);
425 if (new)
426 new->a_prefixlen = addr->a_prefixlen;
428 return new;
  /external/linux-tools-perf/perf-3.12.0/tools/perf/
builtin-help.c 128 char *new = strdup(path); local
129 char *dest = strrchr(new, '/');
133 path = new;
183 struct man_viewer_info_list *new = zalloc(sizeof(*new) + len + 1); local
185 strncpy(new->name, name, len);
186 new->info = strdup(value);
187 new->next = man_viewer_info_list;
188 man_viewer_info_list = new;
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
map.c 457 * Now check if we need to create new maps for areas not
458 * overlapped by the new map:
512 struct map *new = map__clone(map); local
513 if (new == NULL)
515 map_groups__insert(mg, new);
  /external/llvm/include/llvm/IR/
Constants.h 53 void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION;
59 void *operator new(size_t s) {
60 return User::operator new(s, 0);
235 void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION;
242 void *operator new(size_t s) {
243 return User::operator new(s, 0);
298 void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION;
305 void *operator new(size_t s) {
306 return User::operator new(s, 0);
484 void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION
    [all...]
InstrTypes.h 90 void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION;
104 void *operator new(size_t s) {
105 return User::operator new(s, 1);
139 void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION;
149 void *operator new(size_t s) {
150 return User::operator new(s, 2);
407 /// insert the new CastInst before InsertBefore (if it is non-null).
419 /// to automatically insert the new CastInst at the end of InsertAtEnd (if
639 void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION;
693 void *operator new(size_t s)
    [all...]
  /external/llvm/include/llvm/Support/
YAMLParser.h 148 void *operator new(size_t Size, BumpPtrAllocator &Alloc,
538 Doc->reset(new Document(S));
  /external/llvm/lib/IR/
ConstantsContext.h 39 void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION;
42 void *operator new(size_t s) {
43 return User::operator new(s, 1);
56 void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION;
59 void *operator new(size_t s) {
60 return User::operator new(s, 2);
77 void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION;
80 void *operator new(size_t s) {
81 return User::operator new(s, 3);
98 void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION
    [all...]
  /external/skia/src/core/
SkTLList.h 16 inline void* operator new(size_t, SkTLList<T>* list,
105 /** Adds a new element to the list before the location indicated by the iterator. If the
106 iterator refers to a NULL location then the new element is added at the tail */
111 /** Adds a new element to the list after the location indicated by the iterator. If the
112 iterator refers to a NULL location then the new element is added at the head */
230 // For use with operator new
336 // Support in-place initializing of objects inserted into the list via operator new.
337 friend void* operator new<T>(size_t,
343 // Helpers that insert the node and returns a pointer to where the new object should be init'ed.
369 void *operator new(size_t, SkTLList<T>* list
    [all...]
  /ndk/sources/host-tools/make-3.81/
file.c 33 don't add new rules (via $(eval ...)) afterwards. In the future it would
37 in the hash have been snapped (a new boolean flag?) and having snap_deps()
138 register struct file *new; local
179 new = (struct file *) xmalloc (sizeof (struct file));
180 bzero ((char *) new, sizeof (struct file));
181 new->name = new->hname = name;
182 new->update_status = -1;
186 new->last = new;
415 struct dep *new = (struct dep *) local
472 struct dep *new, *d1; local
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
recognizers.rb 38 RecognizerSharedState = Struct.new(
137 Block = Scope.new( "name", "depth = 0", "variables = {}" )
138 Block.new # => #<struct Block name=nil, depth=0, variables={}>
139 Block.new( "function" ) # => #<struct Block name="function", depth=0, variables={}>
140 Block.new( 'a', 1, :x => 3 ) # => #<struct Block name="a", depth=1, variables={ :x => 3 }>
145 def self.new( *declarations, &body ) singleton method in class:ANTLR3.Scope
245 Struct.new( *members )
262 struct = Struct.new( *return_scope_members )
268 @imported_grammars ||= Set.new
315 Scope.new( *declarations, &body
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_dataflow.c 481 struct rc_reader * new; local
484 new = &data->Readers[data->ReaderCount++];
485 new->Inst = inst;
486 new->WriteMask = mask;
487 return new;
497 struct rc_reader * new = add_reader(pool, data, inst, mask); local
498 new->U.I.Src = src;
510 struct rc_reader * new = add_reader(pool, data, inst, mask); local
511 new->U.P.Src = src;
512 new->U.P.Arg = arg
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
glsl_parser_extras.h 63 /* Callers of this ralloc-based new need not call delete. It's
65 static void* operator new(size_t size, void *ctx)
glsl_types.h 88 /* Callers of this ralloc-based new need not call delete. It's
90 static void* operator new(size_t size)
474 * Set on the first call to \c glsl_type::new.
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_fs.h 69 /* Callers of this ralloc-based new need not call delete. It's
71 static void* operator new(size_t size, void *ctx)
129 /* Callers of this ralloc-based new need not call delete. It's
131 static void* operator new(size_t size, void *ctx)
brw_vec4.h 82 /* Callers of this ralloc-based new need not call delete. It's
84 static void* operator new(size_t size, void *ctx)
120 /* Callers of this ralloc-based new need not call delete. It's
122 static void* operator new(size_t size, void *ctx)
149 /* Callers of this ralloc-based new need not call delete. It's
151 static void* operator new(size_t size, void *ctx)
  /external/chromium_org/third_party/webrtc/voice_engine/test/win_test/
WinTestDlg.cc 18 #define new DEBUG_NEW macro
935 // Retrieve new direct-feedback setting
1027 _telephoneEventObserverPtr = new TelephoneEventObserver(wndOut, wndIn);
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/stabs/
stabs-dbgfmt.c 176 /* Create and add a new strtab-style string bytecode to a section, updating
193 /* Create and add a new stab bytecode to a section, updating offset on
260 /* check for new function */
264 info->lastline = 0; /* new file, so line changes */
270 /* output new line stabs if there's a basebc (known function) */
316 int new; local
335 info.stab = yasm_object_get_general(object, ".stab", 4, 0, 0, &new, 0);
336 if (!new) {
351 yasm_object_get_general(object, ".stabstr", 1, 0, 0, &new, 0);
352 if (!new) {
    [all...]
  /external/chromium_org/tools/gyp/test/lib/
TestCmd.py 581 import new namespace
583 subprocess = new.module('subprocess')
    [all...]
  /external/clang/include/clang/Lex/
PreprocessingRecord.h 34 void* operator new(size_t bytes, clang::PreprocessingRecord& PR,
99 // in PreprocessingRecord or by doing a placement new.
100 void* operator new(size_t bytes, PreprocessingRecord& PR,
102 return ::operator new(bytes, PR, alignment);
105 void* operator new(size_t bytes, void* mem) throw() {
118 // Make vanilla 'new' and 'delete' illegal for preprocessed entities.
119 void* operator new(size_t bytes) throw();
356 /// \brief Allocate space for a new set of loaded preprocessed entities.
362 /// \brief Register a new macro definition.
366 /// \brief Construct a new preprocessing record
    [all...]
  /external/clang/test/CodeGenCXX/
dllexport.cpp 271 __declspec(dllexport) void* operator new(__SIZE_TYPE__ n) { return alloc(n); }
    [all...]

Completed in 1863 milliseconds

<<11121314151617181920>>