Home
last modified time | relevance | path

Searched refs:frame (Results 1 – 23 of 23) sorted by relevance

/PHP-7.0/sapi/phpdbg/
H A Dphpdbg_frame.c43 void phpdbg_switch_frame(int frame) /* {{{ */ in phpdbg_switch_frame() argument
48 if (PHPDBG_FRAME(num) == frame) { in phpdbg_switch_frame()
49 phpdbg_notice("frame", "id=\"%d\"", "Already in frame #%d", frame); in phpdbg_switch_frame()
55 if (i++ == frame) { in phpdbg_switch_frame()
69 phpdbg_error("frame", "type=\"maxnum\" id=\"%d\"", "No frame #%d", frame); in phpdbg_switch_frame()
75 if (frame > 0) { in phpdbg_switch_frame()
76 PHPDBG_FRAME(num) = frame; in phpdbg_switch_frame()
85 phpdbg_notice("frame", "id=\"%d\"", "Switched to frame #%d", frame); in phpdbg_switch_frame()
H A DChangelog.md35 - frame (switch to a frame in the current stack for inspection)
H A Dphpdbg_prompt.h44 PHPDBG_COMMAND(frame);
H A Dxml.md211 frame section
214 - General tag for frames is "<frame>"
221 - id: the frame id, current frame has id 0 (frames with internal function calls have the same id th…
222 - symbol ("{main}" is root frame)
225 …internal: has value "internal" when being an internal function call (one cannot inspect that frame)
228 - maxnum: tried to access a frame with a number higher than existing (or < 0)
346 - 2: enter stack frame
347 - 3: leave stack frame
419 - temporarily disables all the breakpoints until the end of the current frame
425 - temporarily disables all the breakpoints past the end of the current frame and then stops
[all …]
H A Dphpdbg_cmd.h111 #define PHPDBG_FRAME(v) (PHPDBG_G(frame).v)
H A Dphpdbg.h242 phpdbg_frame_t frame; /* frame */ variable
H A Dphpdbg_prompt.c84 …PHPDBG_COMMAND_D(frame, "switch to a frame", 'f', NULL, "|n", PHPDBG_ASYN…
761 PHPDBG_COMMAND(frame) /* {{{ */ in PHPDBG_COMMAND() argument
764 phpdbg_notice("frame", "id=\"%d\"", "Currently in frame #%d", PHPDBG_G(frame).num); in PHPDBG_COMMAND()
H A Dphpdbg.c105 pg->frame.num = 0; in php_phpdbg_globals_ctor()
/PHP-7.0/ext/session/tests/
H A D021.phpt11 url_rewriter.tags="a=href,area=href,frame=src,input=src,form=,fieldset="
29 ini_set("url_rewriter.tags", "a=href,area=href,frame=src,input=src,form=");
38 ini_set("url_rewriter.tags", "a=href,area=href,frame=src,input=src,form=fakeentry");
47 ini_set("url_rewriter.tags", "a=href,fieldset=,area=href,frame=src,input=src");
/PHP-7.0/sapi/phpdbg/tests/
H A Dexceptions_001.phpt16 prompt> frame #0: {closure}() at %s:16
17 frame #1: {main} at %s:20
/PHP-7.0/ext/pcre/pcrelib/
H A Dpcre_exec.c357 frame->Xwhere = rw;\
364 newframe->Xprevframe = frame;\
365 frame = newframe;\
374 heapframe *oldframe = frame;\
376 if (frame != NULL)\
540 frame->Xeptr = eptr; in match()
541 frame->Xecode = ecode; in match()
542 frame->Xmstart = mstart; in match()
544 frame->Xeptrb = eptrb; in match()
545 frame->Xrdepth = rdepth; in match()
[all …]
H A DChangeLog1154 recursion). Instead of malloc and free for each heap frame each time a
1310 15. Applied Graycode's patch to put the top-level frame on the stack rather
1314 16. Experimental code added to "pcretest -C" to output the stack frame size.
2101 12. Change 11 fortuitously reduced the size of the stack frame used in the
2104 stack; I have reserved it now, so that the stack frame size does not
3024 optimization. That gives it a stack frame in which to save the data for
3165 a small improvement under Linux. However, it saves one field in the frame
3787 25. Applied Ian Taylor's patches to avoid using another stack frame for tail
4453 each "recursion" in a frame on the heap, and gets/frees frames whenever it
/PHP-7.0/Zend/tests/
H A Dbug63762.phpt33 Warning: Expected array for frame 0 in %s on line %d
/PHP-7.0/Zend/
H A Dzend_exceptions.c644 zval *trace, *frame, rv; in ZEND_METHOD() local
660 ZEND_HASH_FOREACH_NUM_KEY_VAL(Z_ARRVAL_P(trace), index, frame) { in ZEND_METHOD()
661 if (Z_TYPE_P(frame) != IS_ARRAY) { in ZEND_METHOD()
666 _build_trace_string(&str, Z_ARRVAL_P(frame), num++); in ZEND_METHOD()
/PHP-7.0/
H A Dphp.ini-development162 ; Default Value: "a=href,area=href,frame=src,form=,fieldset="
163 ; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
164 ; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
1498 ; Default Value: "a=href,area=href,frame=src,form=,fieldset="
1499 ; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
1500 ; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
1502 url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry"
H A Dphp.ini-production162 ; Default Value: "a=href,area=href,frame=src,form=,fieldset="
163 ; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
164 ; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
1498 ; Default Value: "a=href,area=href,frame=src,form=,fieldset="
1499 ; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
1500 ; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
1502 url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry"
H A D.gdbinit9 of frame info.
H A DNEWS2359 additional stack frame. (Laruence, Dmitry)
/PHP-7.0/ext/standard/
H A Durl_scanner_ex.re99 …STD_PHP_INI_ENTRY("url_rewriter.tags", "a=href,area=href,frame=src,form=,fieldset=", PHP_INI_ALL, …
/PHP-7.0/ext/pcre/pcrelib/testdata/
H A Dtestinput7182 the same character differ. The first went wrong with heap frame storage; the
H A Dtestoutput7400 the same character differ. The first went wrong with heap frame storage; the
/PHP-7.0/ext/fileinfo/tests/
H A Dmagic1245 # frame speed is multiple of 1/70s
1246 >>>>16 leshort x \b, %d/70s per frame
1258 >>16 uleshort x \b, %dms per frame
1679 # These are actually just bit-for-bit dumps of the frame buffer, so
7916 # for lazy FAT32 implementation like Transcend digital photo frame PF830
9032 # frame: file(1) magic for FrameMaker files
9312 >40 long x %u frame(s),
9314 >24 long x %u vertices/frame,
9316 >32 long x %u triangles/frame
18955 >20 belong 225 (Fibre Channel FC-2 with frame delimiters
/PHP-7.0/ext/pcre/pcrelib/doc/
H A Dpcre.txt4071 absolute value is the approximate stack frame size in bytes. (A nega-
10333 occurs, so this formulation uses a stack frame for each matched charac-
10403 Match recursion uses stack: approximate frame size = 640 bytes

Completed in 165 milliseconds