trace              61 MMgc/GCMemoryProfiler.cpp 			VMPI_memcpy(ips, trace, kMaxStackTrace * sizeof(uintptr_t));
trace             108 MMgc/GCMemoryProfiler.cpp 			StackTrace *trace = (StackTrace*)traceIter.value();
trace             109 MMgc/GCMemoryProfiler.cpp 			delete trace;
trace             127 MMgc/GCMemoryProfiler.cpp 		if(trace->name)
trace             128 MMgc/GCMemoryProfiler.cpp 			return trace->name;
trace             134 MMgc/GCMemoryProfiler.cpp 		while((ip = trace->ips[i++]) != 0) {
trace             151 MMgc/GCMemoryProfiler.cpp 				trace->skip++;
trace             156 MMgc/GCMemoryProfiler.cpp 		trace->name = name;
trace             184 MMgc/GCMemoryProfiler.cpp 		if(trace->master)
trace             185 MMgc/GCMemoryProfiler.cpp 			trace = trace->master;
trace             186 MMgc/GCMemoryProfiler.cpp 		if(trace->category)
trace             187 MMgc/GCMemoryProfiler.cpp 			return trace->category;
trace             188 MMgc/GCMemoryProfiler.cpp 		const char *cat = GetAllocationNameFromTrace(trace);
trace             189 MMgc/GCMemoryProfiler.cpp 		trace->category = cat;
trace             195 MMgc/GCMemoryProfiler.cpp 		trace->size += delta; 
trace             196 MMgc/GCMemoryProfiler.cpp 		trace->count += (delta > 0) ? 1 : -1;
trace             197 MMgc/GCMemoryProfiler.cpp 		GCAssert(trace->count != 0 || trace->size == 0);
trace             199 MMgc/GCMemoryProfiler.cpp 			trace->totalSize += delta; 
trace             200 MMgc/GCMemoryProfiler.cpp 			trace->totalCount++; 
trace             208 MMgc/GCMemoryProfiler.cpp 		StackTrace *trace = GetStackTrace();
trace             210 MMgc/GCMemoryProfiler.cpp 		ChangeSize(trace, (int)gotSize);
trace             220 MMgc/GCMemoryProfiler.cpp 		info->allocTrace = trace;
trace             224 MMgc/GCMemoryProfiler.cpp 			trace->master = GetAllocationTrace(memtype);
trace             230 MMgc/GCMemoryProfiler.cpp 			trace->category = memtag;
trace             251 MMgc/GCMemoryProfiler.cpp 			trace->sweepSize += size;	
trace             252 MMgc/GCMemoryProfiler.cpp 			trace->sweepCount++;
trace             259 MMgc/GCMemoryProfiler.cpp 		uintptr_t trace[kMaxStackTrace];
trace             260 MMgc/GCMemoryProfiler.cpp 		VMPI_memset(trace, 0, sizeof(trace));
trace             262 MMgc/GCMemoryProfiler.cpp 		VMPI_captureStackTrace(trace, kMaxStackTrace, 3);
trace             263 MMgc/GCMemoryProfiler.cpp 		StackTrace *st = (StackTrace*)stackTraceMap.get(trace); 
trace             265 MMgc/GCMemoryProfiler.cpp 			st = new StackTrace(trace);
trace             347 MMgc/GCMemoryProfiler.cpp 		if(trace->package)
trace             348 MMgc/GCMemoryProfiler.cpp 			return trace->package;
trace             349 MMgc/GCMemoryProfiler.cpp 		const char *name = GetAllocationNameFromTrace(trace);
trace             359 MMgc/GCMemoryProfiler.cpp 		trace->package = package;
trace             385 MMgc/GCMemoryProfiler.cpp 			StackTrace *trace = (StackTrace*)iter.value();
trace             389 MMgc/GCMemoryProfiler.cpp 				size = trace->sweepSize;
trace             391 MMgc/GCMemoryProfiler.cpp 				size = trace->totalSize;
trace             393 MMgc/GCMemoryProfiler.cpp 				size = trace->size;
trace             401 MMgc/GCMemoryProfiler.cpp 			uint32_t count = trace->master != NULL ? 0 : trace->count;
trace             402 MMgc/GCMemoryProfiler.cpp 			residentCount += trace->count;
trace             404 MMgc/GCMemoryProfiler.cpp 			const char *pack = GetPackage(trace);
trace             414 MMgc/GCMemoryProfiler.cpp 			const char *cat = GetAllocationCategory(trace);			
trace             425 MMgc/GCMemoryProfiler.cpp 				if(tg->traces[j] == trace)
trace             431 MMgc/GCMemoryProfiler.cpp 					tg->traces[j] = trace;
trace             508 MMgc/GCMemoryProfiler.cpp 					StackTrace *trace = tg->traces[j];
trace             509 MMgc/GCMemoryProfiler.cpp 					if(trace) {
trace             510 MMgc/GCMemoryProfiler.cpp 						size_t size = trace->size;
trace             511 MMgc/GCMemoryProfiler.cpp 						uint32_t count = trace->count;
trace             513 MMgc/GCMemoryProfiler.cpp 							size = trace->sweepSize;
trace             514 MMgc/GCMemoryProfiler.cpp 							count = trace->sweepCount;
trace             516 MMgc/GCMemoryProfiler.cpp 							size = trace->totalSize;
trace             517 MMgc/GCMemoryProfiler.cpp 							count = trace->totalCount;
trace             520 MMgc/GCMemoryProfiler.cpp 						PrintStackTrace(trace);
trace             551 MMgc/GCMemoryProfiler.cpp 		uintptr_t trace[kMaxStackTrace];
trace             552 MMgc/GCMemoryProfiler.cpp 		VMPI_memset(trace, 0, sizeof(trace));
trace             554 MMgc/GCMemoryProfiler.cpp 		VMPI_captureStackTrace(trace, kMaxStackTrace, 1);
trace             556 MMgc/GCMemoryProfiler.cpp 		GCLog("ReferenceAddress VMPI_captureStackTrace 0x%x \n", trace[0]);
trace             561 MMgc/GCMemoryProfiler.cpp 			StackTrace *trace = (StackTrace*)iter.value();
trace             566 MMgc/GCMemoryProfiler.cpp 				size = trace->sweepSize;
trace             567 MMgc/GCMemoryProfiler.cpp 				count = trace->sweepCount;
trace             569 MMgc/GCMemoryProfiler.cpp 				size = trace->totalSize;
trace             570 MMgc/GCMemoryProfiler.cpp 				count = trace->totalCount;
trace             572 MMgc/GCMemoryProfiler.cpp 				size = trace->size;
trace             573 MMgc/GCMemoryProfiler.cpp 				count = trace->count;
trace             580 MMgc/GCMemoryProfiler.cpp 			PrintStackTrace(trace);
trace             610 MMgc/GCMemoryProfiler.cpp 		for(int i=0; trace[i] != 0; i++) {
trace             618 MMgc/GCMemoryProfiler.cpp 			if((found_name = VMPI_getFunctionNameFromPC(trace[i], buff, sizeof(buff))) == false)
trace             620 MMgc/GCMemoryProfiler.cpp 				VMPI_snprintf(buff, sizeof(buff), "0x%llx", (unsigned long long)trace[i]);
trace             626 MMgc/GCMemoryProfiler.cpp 			if(VMPI_getFileAndLineInfoFromPC(trace[i], buff, sizeof(buff), &lineNum))
trace             637 MMgc/GCMemoryProfiler.cpp 					tp += VMPI_sprintf(tp, " - 0x%x", (unsigned int) trace[i]);
trace             655 MMgc/GCMemoryProfiler.cpp 		DumpStackTraceHelper(&trace->ips[trace->skip]);
trace             661 MMgc/GCMemoryProfiler.cpp 			StackTrace *trace = GCHeap::GetGCHeap()->GetProfiler()->GetAllocationTrace(item);
trace             662 MMgc/GCMemoryProfiler.cpp 			GCAssertMsg(trace != NULL, "Trace was null");
trace             663 MMgc/GCMemoryProfiler.cpp 			PrintStackTrace(trace);
trace             670 MMgc/GCMemoryProfiler.cpp 			StackTrace *trace = GCHeap::GetGCHeap()->GetProfiler()->GetDeletionTrace(item);
trace             671 MMgc/GCMemoryProfiler.cpp 			GCAssertMsg(trace != NULL, "Trace was null");
trace             672 MMgc/GCMemoryProfiler.cpp 			PrintStackTrace(trace);
trace              59 MMgc/GCMemoryProfiler.h 	void PrintStackTrace(StackTrace *trace);
trace             100 MMgc/GCMemoryProfiler.h 		const char *GetPackage(StackTrace *trace);
trace             101 MMgc/GCMemoryProfiler.h 		const char *GetAllocationNameFromTrace(StackTrace *trace);
trace             102 MMgc/GCMemoryProfiler.h 		const char *GetAllocationCategory(StackTrace *trace);
trace              62 axscript/SystemClass.h 		void trace(ArrayObject* a);
trace             306 core/Sampler.cpp 			s.stack.trace = p;
trace             637 core/Sampler.cpp 				StackTrace::Element *e = (StackTrace::Element*)s.stack.trace;
trace             139 core/Sampler.h 				void *trace; 
trace             532 core/avmplusDebugger.cpp 		CallStackNode* trace = core->callStack;
trace             534 core/avmplusDebugger.cpp 		while( (trace = trace->next()) != 0 && count < MAX_FRAMES )
trace             549 core/avmplusDebugger.cpp 			CallStackNode* trace = locateTrace(frameNbr);
trace             550 core/avmplusDebugger.cpp 			if (trace)
trace             551 core/avmplusDebugger.cpp 				frame = new (core->GetGC()) DebugStackFrame(frameNbr, trace, this);
trace             563 core/avmplusDebugger.cpp 		CallStackNode* trace = core->callStack;
trace             564 core/avmplusDebugger.cpp 		while(count++ < frameNbr && trace != NULL)
trace             565 core/avmplusDebugger.cpp 			trace = trace->next();
trace             567 core/avmplusDebugger.cpp 		return trace;
trace             716 core/avmplusDebugger.cpp 		if (trace->info() && trace->filename() && debugger)
trace             718 core/avmplusDebugger.cpp 			uintptr index = (uintptr)debugger->pool2abcIndex.get(Atom(trace->info()->pool()));
trace             721 core/avmplusDebugger.cpp 			source = abc->sourceNamed(trace->filename());
trace             723 core/avmplusDebugger.cpp 		linenum = trace->linenum();
trace             735 core/avmplusDebugger.cpp 		if (trace->framep() && trace->info())
trace             737 core/avmplusDebugger.cpp 			trace->info()->boxLocals(trace->framep(), 0, trace->traits(), &a, 0, 1); // pull framep[0] = [this] 
trace             754 core/avmplusDebugger.cpp 		if (trace->framep() && trace->info())
trace             763 core/avmplusDebugger.cpp 				MethodInfo* info = trace->info();
trace             764 core/avmplusDebugger.cpp 				info->boxLocals(trace->framep(), firstArgument, trace->traits(), ar, 0, count);
trace             778 core/avmplusDebugger.cpp 		if (trace->framep() && trace->info())
trace             786 core/avmplusDebugger.cpp 				MethodInfo* info = trace->info();
trace             787 core/avmplusDebugger.cpp 				info->unboxLocals(&val, 0, trace->traits(), trace->framep(), firstArgument+which, 1);
trace             801 core/avmplusDebugger.cpp 		if (trace->framep() && trace->info())
trace             811 core/avmplusDebugger.cpp 				MethodInfo* info = trace->info();
trace             812 core/avmplusDebugger.cpp 				info->boxLocals(trace->framep(), firstLocal, trace->traits(), ar, 0, count);
trace             840 core/avmplusDebugger.cpp 		if (trace->framep() && trace->info())
trace             847 core/avmplusDebugger.cpp 				MethodInfo* info = trace->info();
trace             857 core/avmplusDebugger.cpp 					info->unboxLocals(&val, 0, trace->traits(), trace->framep(), firstLocal+which, 1);
trace             876 core/avmplusDebugger.cpp 		if (trace->framep() && trace->info())
trace             878 core/avmplusDebugger.cpp 			const MethodSignature* ms = trace->info()->getMethodSignature();
trace             899 core/avmplusDebugger.cpp 		if (!trace->info())
trace             901 core/avmplusDebugger.cpp 		MethodSignaturep ms = trace->info()->getMethodSignature();
trace             595 core/avmplusDebugger.h 		DebugStackFrame(int nbr, CallStackNode* trace, Debugger* debug);
trace             598 core/avmplusDebugger.h 		CallStackNode* trace;
trace             137 eval/eval-compile.cpp 			lexer.trace();
trace             284 eval/eval-lex.h 	void trace();										// enable tracing
trace             473 eval/eval-parse.cpp 			if (doTrace) lexer->trace();
trace             369 extensions/SamplerScript.cpp 			StackTrace::Element* e = (StackTrace::Element*)sample.stack.trace;
trace             123 shell/SystemClass.h 		void trace(ArrayObject* a);