HomeSort by relevance Sort by last modified time
    Searched full:frame (Results 501 - 525 of 3803) sorted by null

<<21222324252627282930>>

  /hardware/ti/wlan/wl1271/stad/src/Data_link/
txCtrlServ.c 59 DESCRIPTION: Build Null frame Function.
61 - Builds Null Data Frame, considering current QoS mode.
64 pFrame - A pointer to a buffer where the frame should be stored
65 pLength - A pointer to a placeholder for the frame length
72 dot11_header_t *pHeader; /* Note : there is no body for null frame */
89 /* Set the Frame Control with Null Data type, QoS or non-QoS */
124 pFrame - A pointer to a buffer where the frame should be stored
125 pLength - A pointer to a placeholder for the frame length
  /hardware/ti/wlan/wl1271/stad/src/Sta_Management/
mlmeApi.h 85 /* Disassociation frame structure */
92 /* (Re)Association response frame structure */
119 /* Probe response frame structure */
160 /* Authentication message frame structure */
169 /* DeAuthentication message frame structure */
175 /* Action message frame structure */
241 mlmeFrameInfo_t frame; member in struct:__anon8920
245 TRxAttr* pRxAttr, TI_UINT8* frame, TI_UINT16 frameLength );
  /system/wlan/ti/wilink_6_1/stad/Export_Inc/
bssTypes.h 59 * \brief Type of result frame
62 * Enumerates the different types for a result frame
68 /* 0 */ SCAN_RFT_BEACON, /**< Result frame is a beacon */
69 /* 1 */ SCAN_RFT_PROBE_RESPONSE /**< Result frame is a probe response */
91 TI_UINT64 lastRxTSF; /**< TSF of last received frame */
97 resultFrameType_e resultType; /**< The type of frame in pBuffer */
104 TI_UINT8 rxRate; /**< Rate at which last frame was received */
106 * the host timestamp (in milliseconds) at which last frame
  /system/wlan/ti/wilink_6_1/stad/src/Data_link/
txCtrlServ.c 59 DESCRIPTION: Build Null frame Function.
61 - Builds Null Data Frame, considering current QoS mode.
64 pFrame - A pointer to a buffer where the frame should be stored
65 pLength - A pointer to a placeholder for the frame length
72 dot11_header_t *pHeader; /* Note : there is no body for null frame */
89 /* Set the Frame Control with Null Data type, QoS or non-QoS */
124 pFrame - A pointer to a buffer where the frame should be stored
125 pLength - A pointer to a placeholder for the frame length
  /system/wlan/ti/wilink_6_1/stad/src/Sta_Management/
mlmeApi.h 85 /* Disassociation frame structure */
92 /* (Re)Association response frame structure */
119 /* Probe response frame structure */
158 /* Authentication message frame structure */
167 /* DeAuthentication message frame structure */
173 /* Action message frame structure */
236 mlmeFrameInfo_t frame; member in struct:__anon14756
240 TRxAttr* pRxAttr, TI_UINT8* frame, TI_UINT16 frameLength );
  /external/bluetooth/hcidump/parser/
avdtp.c 174 static void errorcode(int level, struct frame *frm)
183 static void acp_seid(int level, struct frame *frm)
192 static void acp_int_seid(int level, struct frame *frm)
202 static void capabilities(int level, struct frame *frm)
285 static inline void discover(int level, uint8_t hdr, struct frame *frm)
307 static inline void get_capabilities(int level, uint8_t hdr, struct frame *frm)
322 static inline void set_configuration(int level, uint8_t hdr, struct frame *frm)
340 static inline void get_configuration(int level, uint8_t hdr, struct frame *frm)
354 static inline void reconfigure(int level, uint8_t hdr, struct frame *frm)
372 static inline void open_close_stream(int level, uint8_t hdr, struct frame *frm
    [all...]
csr.c 58 static inline void valueless_dump(int level, char *str, struct frame *frm)
64 static inline void complex_dump(int level, char *str, struct frame *frm)
72 static inline void bool_dump(int level, char *str, struct frame *frm)
82 static inline void int8_dump(int level, char *str, struct frame *frm)
92 static inline void int16_dump(int level, char *str, struct frame *frm)
102 static inline void uint16_dump(int level, char *str, struct frame *frm)
112 static inline void uint32_dump(int level, char *str, struct frame *frm)
122 static inline void bdaddr_dump(int level, char *str, struct frame *frm)
132 static inline void features_dump(int level, char *str, struct frame *frm)
146 static inline void commands_dump(int level, char *str, struct frame *frm
    [all...]
  /external/opencore/android/samples/
android_surface_output_fb.cpp 20 * This is a sample video sink using frame buffer push model. The
29 * pmem frame buffers used by the hardware output.
93 // create a frame buffer for software codecs
124 // create frame buffer heap
127 LOGE("Error creating frame buffer heap");
138 // create frame buffers
144 LOGV("frame = %d x %d", frameWidth, frameHeight);
145 LOGV("frame #bytes = %d", frameSize);
147 // register frame buffers with SurfaceFlinger
164 // initialize frame buffer hea
    [all...]
  /external/webkit/WebKit/mac/WebView/
WebVideoFullscreenController.mm 184 static void constrainFrameToRatioOfFrame(NSRect *frameToConstrain, const NSRect *frame)
187 double originalRatio = frame->size.width / frame->size.height;
202 static NSWindow *createBackgroundFullscreenWindow(NSRect frame, int level)
204 NSWindow *window = [[NSWindow alloc] initWithContentRect:frame styleMask:NSBorderlessWindowMask backing:NSBackingStoreBuffered defer:NO];
229 NSRect frame = [self mediaElementRect];
230 NSRect endFrame = [screen frame];
231 constrainFrameToRatioOfFrame(&endFrame, &frame);
235 _backgroundFullscreenWindow = createBackgroundFullscreenWindow([screen frame], [[self window] level]-1);
237 [_backgroundFullscreenWindow setFrame:[screen frame] display:NO]
    [all...]
  /external/webkit/WebKitTools/WinLauncher/
WinLauncher.cpp 211 IWebFrame* frame;
212 hr = gWebView->mainFrame(&frame);
217 frame->loadHTMLString(defaultHTML, 0);
218 frame->Release();
339 IWebFrame* frame = 0; local
340 if (FAILED(gWebView->mainFrame(&frame)))
344 if (FAILED(frame->QueryInterface(&framePrivate)))
370 if (frame)
371 frame->Release();
463 IWebFrame* frame = 0 local
    [all...]
  /external/webkit/WebCore/loader/appcache/
ApplicationCacheGroup.cpp 40 #include "Frame.h"
123 void ApplicationCacheGroup::selectCache(Frame* frame, const KURL& passedManifestURL)
125 ASSERT(frame && frame->page());
127 if (!frame->settings()->offlineWebApplicationCacheEnabled())
130 DocumentLoader* documentLoader = frame->loader()->documentLoader();
134 selectCacheWithoutManifestURL(frame);
147 mainResourceCache->group()->update(frame, ApplicationCacheUpdateWithBrowsingContext);
162 frame->redirectScheduler()->scheduleLocationChange(documentLoader->url(), frame->loader()->referrer(), t (…)
960 Frame* frame = m_documentLoader->frame(); local
989 Frame* frame = loader->frame(); local
    [all...]
  /external/webkit/WebCore/inspector/
JavaScriptDebugServer.cpp 36 #include "Frame.h"
326 Frame* frame = window->impl()->frame(); local
327 return frame ? frame->page() : 0;
418 for (Frame* frame = page->mainFrame(); frame; frame = frame->tree()->traverseNext()
    [all...]
  /external/webkit/WebCore/page/
Location.cpp 32 #include "Frame.h"
39 Location::Location(Frame* frame)
40 : m_frame(frame)
55 return blankURL(); // Use "about:blank" while the page is still loading (before we have a frame).
XSSAuditor.cpp 37 #include "Frame.h"
88 XSSAuditor::XSSAuditor(Frame* frame)
89 : m_frame(frame)
301 Frame* frame = m_frame; local
302 if (frame->document()->url() == blankURL())
303 frame = m_frame->tree()->parent();
306 String xssProtectionValue = frame->loader()->documentLoader()->response().httpHeaderField(XSSProtectionHeader).stripWhiteSpace();
313 Frame* parentFrame = m_frame->tree()->parent()
    [all...]
  /external/webkit/WebCore/page/gtk/
EventHandlerGtk.cpp 32 #include "Frame.h"
94 return static_cast<FrameView*>(widget)->frame()->eventHandler()->handleWheelEvent(event);
102 bool EventHandler::passMousePressEventToSubframe(MouseEventWithHitTestResults& mev, Frame* subframe)
108 bool EventHandler::passMouseMoveEventToSubframe(MouseEventWithHitTestResults& mev, Frame* subframe, HitTestResult* hoveredNode)
114 bool EventHandler::passMouseReleaseEventToSubframe(MouseEventWithHitTestResults& mev, Frame* subframe)
  /external/webkit/WebCore/page/qt/
EventHandlerQt.cpp 37 #include "Frame.h"
107 return static_cast<FrameView*>(widget)->frame()->eventHandler()->handleWheelEvent(event);
115 bool EventHandler::passMousePressEventToSubframe(MouseEventWithHitTestResults& mev, Frame* subframe)
121 bool EventHandler::passMouseMoveEventToSubframe(MouseEventWithHitTestResults& mev, Frame* subframe, HitTestResult* hoveredNode)
127 bool EventHandler::passMouseReleaseEventToSubframe(MouseEventWithHitTestResults& mev, Frame* subframe)
  /external/webkit/WebCore/page/win/
EventHandlerWin.cpp 35 #include "Frame.h"
51 bool EventHandler::passMousePressEventToSubframe(MouseEventWithHitTestResults& mev, Frame* subframe)
57 bool EventHandler::passMouseMoveEventToSubframe(MouseEventWithHitTestResults& mev, Frame* subframe, HitTestResult* hoveredNode)
65 bool EventHandler::passMouseReleaseEventToSubframe(MouseEventWithHitTestResults& mev, Frame* subframe)
76 return static_cast<FrameView*>(widget)->frame()->eventHandler()->handleWheelEvent(wheelEvent);
  /external/webkit/WebCore/platform/graphics/
BitmapImage.cpp 80 // The underlying frame isn't actually changing (we're just trying to
96 // to one frame at a time.
160 // Because we're modifying the current frame, clear its (now possibly
168 // Clear the frame count.
173 // Image properties will not be available until the first frame of the file
267 // We can't ever seem to keep up, so always let us just show the next frame
273 // Determine time for next frame to start. By ignoring paint and timer lag
291 // Don't advance the animation to an incomplete frame.
296 // Don't advance past the last frame if we haven't decoded the whole image
305 // Clamp the desired frame start time in this case, so that we don't ski
    [all...]
  /external/webkit/WebCore/platform/mac/
PlatformScreenMac.mm 30 #import "Frame.h"
57 return toUserSpace([screenForWindow(window) frame], window);
82 userRect.setY(NSMaxY([screenForWindow(destination) frame]) - (userRect.y() + userRect.height())); // flip
93 deviceRect.setY(NSMaxY([screenForWindow(source) frame]) - (deviceRect.y() + deviceRect.height())); // flip
100 flippedPoint.y = NSMaxY([screen frame]) - flippedPoint.y;
  /external/webkit/WebCore/platform/qt/
CookieJarQt.cpp 48 Frame *frame = document->frame();
49 if (!frame)
51 FrameLoader *loader = frame->loader();
  /external/webkit/WebCore/platform/wx/
ClipboardWx.cpp 115 void ClipboardWx::declareAndWriteDragImage(Element*, const KURL&, const String&, Frame*)
120 void ClipboardWx::writeURL(const KURL& url, const String& string, Frame* frame)
122 Pasteboard::generalPasteboard()->writeURL(url, string, frame);
125 void ClipboardWx::writeRange(Range*, Frame*)
  /external/webkit/WebCore/rendering/
RenderTextControlMultiLine.cpp 27 #include "Frame.h"
60 if (Frame* frame = document()->frame())
61 frame->textDidChangeInTextArea(textArea);
  /external/webkit/WebKit/chromium/public/
WebPageSerializer.h 51 // Return false means no available frame has been serialized, otherwise
54 // The parameter frame specifies which frame need to be serialized.
56 // serialize all sub frames of the specified frame or not.
65 WEBKIT_API static bool serialize(WebFrame* frame,
  /external/webkit/WebKit/chromium/src/
WebImageSkia.cpp 57 // Pick the frame closest to |desiredSize|'s area without being smaller,
60 size_t index = 0; // Default to first frame if none are large enough.
79 OwnPtr<NativeImageSkia> frame(source.createFrameAtIndex(index));
80 if (!frame.get())
83 return WebImage(*frame);
  /external/webkit/WebKit/mac/DOM/
WebDOMOperations.h 50 @abstract Returns the frame of the DOM document.
85 @abstract Returns the content frame of the element.
95 @abstract Returns the content frame of the element.
105 @abstract Returns the content frame of the element.
106 @discussion Returns non-nil only if the object represents a child frame

Completed in 240 milliseconds

<<21222324252627282930>>