Home
last modified time | relevance | path

Searched +full:code +full:- +full:frame (Results 1 – 25 of 1078) sorted by relevance

12345678910>>...44

/external/python/cpython3/Python/
Dframe.c10 _PyFrame_Traverse(_PyInterpreterFrame *frame, visitproc visit, void *arg) in _PyFrame_Traverse() argument
12 Py_VISIT(frame->frame_obj); in _PyFrame_Traverse()
13 Py_VISIT(frame->f_locals); in _PyFrame_Traverse()
14 Py_VISIT(frame->f_func); in _PyFrame_Traverse()
15 Py_VISIT(frame->f_code); in _PyFrame_Traverse()
17 PyObject **locals = _PyFrame_GetLocalsArray(frame); in _PyFrame_Traverse()
20 for (; i <frame->stacktop; i++) { in _PyFrame_Traverse()
27 _PyFrame_MakeAndSetFrameObject(_PyInterpreterFrame *frame) in _PyFrame_MakeAndSetFrameObject() argument
29 assert(frame->frame_obj == NULL); in _PyFrame_MakeAndSetFrameObject()
33 PyFrameObject *f = _PyFrame_New_NoTrack(frame->f_code); in _PyFrame_MakeAndSetFrameObject()
[all …]
/external/oj-libjdwp/src/share/classes/com/sun/jdi/
DStackFrame.java5 * This code is free software; you can redistribute it and/or modify it
9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * accompanied this code).
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
35 * mirrors one such frame from a target VM at some point in its
46 * Any method on <code>StackFrame</code> which
47 * takes <code>StackFrame</code> as an parameter may throw
52 * Any method on <code>StackFrame</code> which
53 * takes <code>StackFrame</code> as an parameter may throw
[all …]
DThreadReference.java5 * This code is free software; you can redistribute it and/or modify it
9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * accompanied this code).
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
32 * access to thread-specific information from the target VM.
42 public final int THREAD_STATUS_UNKNOWN =-1;
47 /** Thread is sleeping - Thread.sleep() or JVM_Sleep() was called */
51 /** Thread is waiting - Object.wait() or JVM_MonitorWait() was called */
84 …* @throws VMCannotBeModifiedException if the VirtualMachine is read-only - see {@link VirtualMachi…
[all …]
/external/ltp/testcases/kernel/device-drivers/v4l/user_space/doc/spec/
Dr8724.htm1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd…
73 NAME="VIDIOC-ENUM-FRAMEINTERVALS"
83 >VIDIOC_ENUM_FRAMEINTERVALS&nbsp;--&nbsp;Enumerate frame intervals</DIV
99 ><CODE
100 ><CODE
102 >int ioctl</CODE
103 >(int fd, int request, struct v4l2_frmivalenum *argp);</CODE
122 ><CODE
124 >fd</CODE
130 ><CODE
[all …]
Dr8494.htm1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd…
73 NAME="VIDIOC-ENUM-FRAMESIZES"
83 >VIDIOC_ENUM_FRAMESIZES&nbsp;--&nbsp;Enumerate frame sizes</DIV
99 ><CODE
100 ><CODE
102 >int ioctl</CODE
103 >(int fd, int request, struct v4l2_frmsizeenum *argp);</CODE
122 ><CODE
124 >fd</CODE
130 ><CODE
[all …]
/external/python/cpython3/Objects/
Dframeobject.c1 /* Frame object implementation */
30 PyObject *locals = f->f_frame->f_locals; in frame_getlocals()
39 if (f->f_lineno != 0) { in PyFrame_GetLineNumber()
40 return f->f_lineno; in PyFrame_GetLineNumber()
43 return _PyInterpreterFrame_GetLine(f->f_frame); in PyFrame_GetLineNumber()
62 int lasti = _PyInterpreterFrame_LASTI(f->f_frame); in frame_getlasti()
64 return PyLong_FromLong(-1); in frame_getlasti()
72 PyObject *globals = f->f_frame->f_globals; in frame_getglobals()
83 PyObject *builtins = f->f_frame->f_builtins; in frame_getbuiltins()
111 // with EXTENDED_ARG. This only works correctly with *unquickened* code,
[all …]
/external/cronet/net/third_party/quiche/src/quiche/quic/core/
Dquic_error_codes.h2 // Use of this source code is governed by a BSD-style license that can be
16 // QuicRstStreamErrorCode is encoded as a single octet on-the-wire in IETF QUIC
17 // and a 32-bit integer in gQUIC.
29 // Stream closed due to connection error. No reset frame is sent when this
32 // GoAway frame sent. No more stream can be created.
62 // specific error code, or endpoint declines to use the more specific error
63 // code.
71 // A frame was received which was not permitted in the current state or on the
74 // A frame that fails to satisfy layout requirements or with an invalid size
82 // Error in the payload of a SETTINGS frame.
[all …]
/external/glide/third_party/gif_decoder/src/main/java/com/bumptech/glide/gifdecoder/
DGifDecoder.java40 * Reads frame data from a GIF image source and decodes it into individual frames
45 * are no methods to get individual frame images, only to decode the next frame in the
47 * data necessary to decode the next frame in the animation sequence.
50 * frame. This method must also be called before you request the first frame or an error will
53 …* Implementation adapted from sample code published in Lyons. (2004). <em>Java for Programmers</em…
72 * Unable to fully decode the current frame.
85 * GIF Disposal Method meaning leave canvas from previous frame.
93 * GIF Disposal Method meaning clear canvas to frame before last.
97 private static final int NULL_CODE = -1;
99 private static final int INITIAL_FRAME_POINTER = -1;
[all …]
/external/nanohttpd/websocket/src/main/java/fi/iki/elonen/
DNanoWSD.java5 * NanoHttpd-Websocket
7 * Copyright (C) 2012 - 2015 nanohttpd
12 * 1. Redistributions of source code must retain the above copyright notice, this
106 protected abstract void onClose(CloseCode code, String reason, boolean initiatedByRemote); in onClose() argument
117 * @param frame
118 * The received WebSocket Frame.
120 protected void debugFrameReceived(WebSocketFrame frame) { in debugFrameReceived() argument
125 * This method is called before actually sending the frame.
127 * @param frame
128 * The sent WebSocket Frame.
[all …]
/external/autotest/client/cros/chameleon/
Davsync_probe_utils.py3 # Use of this source code is governed by a BSD-style license that can be
53 # SyncResult namedtuple of audio and video frame.
60 """Converts bit patterns between binary and Gray code.
62 The bit patterns of Gray code values are packed into an int value.
63 For example, 4 is "110" in Gray code, which reads "6" when interpreted
71 """Binary code to gray code.
73 @param binary: Binary code.
74 @return: gray code.
81 """Gray code to binary code.
83 @param gray: Gray code.
[all …]
/external/google-cloud-java/java-video-intelligence/proto-google-cloud-video-intelligence-v1/src/main/java/com/google/cloud/videointelligence/v1/
DFaceFrameOrBuilder.java8 * https://www.apache.org/licenses/LICENSE-2.0
31 * Normalized Bounding boxes in a frame.
33 * locations within the current frame.
36 * <code>
38 * </code>
46 * Normalized Bounding boxes in a frame.
48 * locations within the current frame.
51 * <code>
53 * </code>
60 * Normalized Bounding boxes in a frame.
[all …]
DFaceFrame.java8 * https://www.apache.org/licenses/LICENSE-2.0
28 * Protobuf type {@code google.cloud.videointelligence.v1.FaceFrame}
80 * Normalized Bounding boxes in a frame.
82 * locations within the current frame.
85 * <code>
87 * </code>
98 * Normalized Bounding boxes in a frame.
100 * locations within the current frame.
103 * <code>
105 * </code>
[all …]
/external/google-cloud-java/java-video-intelligence/proto-google-cloud-video-intelligence-v1beta2/src/main/java/com/google/cloud/videointelligence/v1beta2/
DFaceFrameOrBuilder.java8 * https://www.apache.org/licenses/LICENSE-2.0
30 * Normalized Bounding boxes in a frame.
32 * locations within the current frame.
35 * <code>
37 * </code>
45 * Normalized Bounding boxes in a frame.
47 * locations within the current frame.
50 * <code>
52 * </code>
60 * Normalized Bounding boxes in a frame.
[all …]
DFaceFrame.java8 * https://www.apache.org/licenses/LICENSE-2.0
25 * Video frame level annotation results for face detection.
28 * Protobuf type {@code google.cloud.videointelligence.v1beta2.FaceFrame}
79 * Normalized Bounding boxes in a frame.
81 * locations within the current frame.
84 * <code>
86 * </code>
97 * Normalized Bounding boxes in a frame.
99 * locations within the current frame.
102 * <code>
[all …]
/external/python/cpython3/Tools/gdb/
Dlibpython.py3 From gdb 7 onwards, gdb's build can be configured --with-python, allowing gdb
4 to be extended with Python code e.g. for library-specific data visualizations,
6 http://sourceware.org/gdb/current/onlinedocs/gdb/Python-API.html
16 that we can emit useful visualizations e.g. a string, a list, a dict, a frame
29 of the data to a file-like object. This allows us to stop the traversal by
30 having the file-like object raise an exception if it gets too much data.
41 The module also extends gdb with some python-specific commands.
92 FRAME_INFO_OPTIMIZED_OUT = '(frame information optimized out)'
93 UNABLE_READ_INFO_PYTHON_FRAME = 'Unable to read information on python frame'
126 byte = chr(ord(char) - 0xDC00)
[all …]
/external/javassist/src/main/javassist/bytecode/analysis/
DAnalyzer.java2 * Javassist, a Java-bytecode translator toolkit.
3 * Copyright (C) 1999- Shigeru Chiba. All Rights Reserved.
33 * A data-flow analyzer that determines the type state of the stack and local
73 * Frame[] frames = analyzer.analyze(clazz, method);
88 private Frame[] frames;
106 * Performs data-flow analysis on a method and returns an array, indexed by
107 * instruction position, containing the starting frame state of all reachable
108 * instructions. Non-reachable code, and illegal code offsets are represented
109 * as a null in the frame state array. This can be used to detect dead code.
111 * If the method does not contain code (it is either native or abstract), null
[all …]
/external/python/cpython3/Lib/idlelib/
Ddebugger.py5 from tkinter.ttk import Frame, Scrollbar
18 def user_line(self, frame): argument
19 if self.in_rpc_code(frame):
22 message = self.__frame2message(frame)
24 self.gui.interaction(message, frame)
28 def user_exception(self, frame, info): argument
29 if self.in_rpc_code(frame):
32 message = self.__frame2message(frame)
33 self.gui.interaction(message, frame, info)
35 def in_rpc_code(self, frame): argument
[all …]
/external/python/cpython2/Lib/idlelib/
DDebugger.py15 def user_line(self, frame): argument
16 if self.in_rpc_code(frame):
19 message = self.__frame2message(frame)
21 self.gui.interaction(message, frame)
25 def user_exception(self, frame, info): argument
26 if self.in_rpc_code(frame):
29 message = self.__frame2message(frame)
30 self.gui.interaction(message, frame, info)
32 def in_rpc_code(self, frame): argument
33 if frame.f_code.co_filename.count('rpc.py'):
[all …]
DRemoteDebugger.py8 +----------+ # +------------+ +-----+
9 | GUIProxy |--remote#call-->| GUIAdapter |--calls-->| GUI |
10 +-----+--calls-->+----------+ # +------------+ +-----+
12 +-----+<-calls--+------------+ # +----------+<--calls-/
13 | IdbAdapter |<--remote#call--| IdbProxy |
14 +------------+ # +----------+
19 barrier, in particular frame and traceback objects.
40 def wrap_frame(frame): argument
41 fid = id(frame)
42 frametable[fid] = frame
[all …]
/external/rust/crates/tungstenite/src/protocol/frame/
Dframe.rs22 /// The reason as a code.
23 pub code: CloseCode, field
30 pub fn into_owned(self) -> CloseFrame<'static> { in into_owned()
31 CloseFrame { code: self.code, reason: self.reason.into_owned().into() } in into_owned()
36 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { in fmt()
37 write!(f, "{} ({})", self.reason, self.code) in fmt()
41 /// A struct representing a WebSocket frame header.
45 /// Indicates that the frame is the last one of a possibly fragmented message.
55 /// A frame mask, if any.
60 fn default() -> Self { in default()
[all …]
/external/python/cpython2/Doc/library/
Dbdb.rst1 :mod:`bdb` --- Debugger framework
7 **Source code:** :source:`Lib/bdb.py`
9 --------------
26 (re-)enabling, and conditionals.
77 The *skip* argument, if given, must be an iterable of glob-style
80 frame is considered to originate in a certain module is determined
81 by the ``__name__`` in the frame globals.
91 case-normalized (on case-insensitive filesystems) absolute path, stripped
99 .. method:: trace_dispatch(frame, event, arg)
104 The default implementation decides how to dispatch a frame, depending on
[all …]
/external/cronet/net/websockets/
Dwebsocket_channel.cc2 // Use of this source code is governed by a BSD-style license that can be
56 // https://tools.ietf.org/html/rfc6455#section-7.1.1
66 // Maximum close reason length = max control frame payload -
67 // status code length
68 // = 125 - 2
69 constexpr size_t kMaximumCloseReasonLength = 125 - kWebSocketCloseCodeLength;
71 // Check a close status code for strict compliance with RFC6455. This is only
74 // codes. The |code| parameter is type int for convenience of implementation;
75 // the real type is uint16_t. Code 1005 is treated specially; it cannot be set
77 // a Close frame with no payload.
[all …]
/external/libvpx/
Dusage_dx.dox6 frame of data. Packets \ref MUST be passed in decode order. If the
7 application wishes to associate some data with the frame, the
8 <code>user_priv</code> member may be set. The <code>deadline</code>
10 spend working on the frame. This is typically used to support adaptive
12 information on the <code>deadline</code> parameter, see \ref usage_deadline.
20 There are two methods for the application to access decoded frame data. Some
21 codecs support asynchronous (callback-based) decoding \ref usage_features
26 frame-based and slice-based variants. Frame based callbacks conform to the
28 frame has been decoded. Slice based callbacks conform to the signature of
29 #vpx_codec_put_slice_cb_fn_t and are invoked after a subsection of the frame
[all …]
/external/cronet/net/third_party/quiche/src/quiche/http2/adapter/
Dhttp2_visitor_interface.h14 // Http2VisitorInterface contains callbacks for receiving HTTP/2-level events. A
21 // - OnBeginHeadersForStream()
22 // - OnHeaderForStream()
23 // - OnEndHeadersForStream()
24 // - OnEndStream()
27 // - OnBeginHeadersForStream()
28 // - OnHeaderForStream()
29 // - OnEndHeadersForStream()
30 // - OnBeginDataForStream()
31 // - OnDataForStream()
[all …]
/external/cronet/net/third_party/quiche/src/quiche/quic/core/frames/
Dquic_connection_close_frame.h2 // Use of this source code is governed by a BSD-style license that can be
21 // Builds a connection close frame based on the transport version
23 // TO USE IF YOU NEED TO CREATE A CONNECTION-CLOSE-FRAME AND
24 // HAVE IT BE CORRECT FOR THE VERSION AND CODE MAPPINGS.
26 // error code. Otherwise if |ietf_error| is NO_IETF_QUIC_ERROR, the
37 // Indicates whether the the frame is a Google QUIC CONNECTION_CLOSE frame,
38 // an IETF QUIC CONNECTION_CLOSE frame with transport error code,
39 // or an IETF QUIC CONNECTION_CLOSE frame with application error code.
42 // The error code on the wire. For Google QUIC frames, this has the same
49 // this is parsed from the Reason Phrase field of the CONNECTION_CLOSE frame,
[all …]

12345678910>>...44