/external/mesa3d/src/gallium/drivers/softpipe/ |
H A D | sp_screen.h | 48 unsigned timestamp; member in struct:softpipe_screen
|
H A D | sp_texture.h | 67 unsigned timestamp; member in struct:softpipe_resource
|
/external/libdrm/freedreno/ |
H A D | freedreno_pipe.c | 73 drm_public int fd_pipe_wait(struct fd_pipe *pipe, uint32_t timestamp) argument 75 return pipe->funcs->wait(pipe, timestamp);
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
H A D | lp_screen.h | 56 unsigned timestamp; member in struct:llvmpipe_screen
|
/external/jetty/src/java/org/eclipse/jetty/io/ |
H A D | AbstractConnection.java | 40 public AbstractConnection(EndPoint endp,long timestamp) argument 43 _timeStamp = timestamp;
|
/external/libdrm/freedreno/msm/ |
H A D | msm_pipe.c | 57 static int msm_pipe_wait(struct fd_pipe *pipe, uint32_t timestamp) argument 61 .fence = timestamp,
|
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
H A D | wpamsg.h | 20 timestamp = QDateTime::currentDateTime(); 25 QDateTime getTimestamp() const { return timestamp; } 30 QDateTime timestamp; member in class:WpaMsg
|
/external/jetty/src/java/org/eclipse/jetty/websocket/ |
H A D | WebSocketServletConnectionD00.java | 33 public WebSocketServletConnectionD00(WebSocketFactory factory, WebSocket websocket, EndPoint endpoint, WebSocketBuffers buffers, long timestamp, int maxIdleTime, String protocol) argument 36 super(websocket,endpoint,buffers,timestamp,maxIdleTime,protocol);
|
H A D | WebSocketServletConnectionD06.java | 31 public WebSocketServletConnectionD06(WebSocketFactory factory, WebSocket websocket, EndPoint endpoint, WebSocketBuffers buffers, long timestamp, int maxIdleTime, String protocol) argument 34 super(websocket,endpoint,buffers,timestamp,maxIdleTime,protocol);
|
H A D | WebSocketServletConnectionD08.java | 32 public WebSocketServletConnectionD08(WebSocketFactory factory, WebSocket websocket, EndPoint endpoint, WebSocketBuffers buffers, long timestamp, int maxIdleTime, String protocol, argument 35 super(websocket,endpoint,buffers,timestamp,maxIdleTime,protocol,extensions,draft);
|
H A D | WebSocketServletConnectionRFC6455.java | 32 public WebSocketServletConnectionRFC6455(WebSocketFactory factory, WebSocket websocket, EndPoint endpoint, WebSocketBuffers buffers, long timestamp, int maxIdleTime, String protocol, argument 35 super(websocket,endpoint,buffers,timestamp,maxIdleTime,protocol,extensions,draft);
|
/external/libdrm/freedreno/kgsl/ |
H A D | kgsl_priv.h | 60 /* list of bo's that have been submitted but timestamp has 65 /* if we are the 2d pipe, and want to wait on a timestamp 82 /* timestamp (per pipe) for bo's in a pipe's pending_list: */ 83 uint32_t timestamp[FD_PIPE_MAX]; member in struct:kgsl_bo 96 int kgsl_pipe_timestamp(struct kgsl_pipe *kgsl_pipe, uint32_t *timestamp); 99 void kgsl_pipe_post_submit(struct kgsl_pipe *pipe, uint32_t timestamp); 100 void kgsl_pipe_process_pending(struct kgsl_pipe *pipe, uint32_t timestamp); 112 void kgsl_bo_set_timestamp(struct kgsl_bo *bo, uint32_t timestamp);
|
H A D | kgsl_bo.c | 86 uint32_t timestamp = kgsl_bo_get_timestamp(to_kgsl_bo(bo)); local 103 if (timestamp > current) 109 if (timestamp) 110 fd_pipe_wait(pipe, timestamp); 251 * the timestamp of the last ISSUEIBCMDS on the buffer. 254 * 1) Only set the timestamp for buffers w/ an flink name, ie. 257 * 2) Only set the timestamp for buffers submitted to the 3d ring 264 * The waiting on timestamp happens before flush, and setting of 265 * timestamp happens after flush. It is transparent to the user 270 void kgsl_bo_set_timestamp(struct kgsl_bo *kgsl_bo, uint32_t timestamp) argument 291 uint32_t timestamp = 0; local [all...] |
/external/skia/src/gpu/ |
H A D | GrGpuResourceCacheAccess.h | 64 uint32_t timestamp() const { return fResource->fTimestamp; } function in class:GrGpuResource::CacheAccess
|
/external/drm_hwcomposer/ |
H A D | vsyncworker.cpp | 90 * Returns the timestamp of the next vsync in phase with last_timestamp_. 99 * Thus, we must sleep until timestamp 687 to maintain phase with the last 100 * timestamp. 112 int VSyncWorker::SyntheticWaitVBlank(int64_t *timestamp) { argument 134 *timestamp = (int64_t)vsync.tv_sec * kOneSecondNs + (int64_t)vsync.tv_nsec; 177 int64_t timestamp; local 182 ret = SyntheticWaitVBlank(×tamp); 186 timestamp = (int64_t)vblank.reply.tval_sec * kOneSecondNs + 200 procs->vsync(procs, display, timestamp); 201 last_timestamp_ = timestamp; [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/ |
H A D | TimeLineGraphItem.java | 27 long timestamp; field in class:TimeLineGraphItem 33 TimeLineGraphItem(String title, String description,double value,Color color,boolean display, long timestamp, boolean isSpecial,boolean isBaseline) { argument 34 this(title, description, value, color,display, timestamp,isSpecial); 38 TimeLineGraphItem(String title, String description,double value,Color color,boolean display, long timestamp, boolean isSpecial) { argument 39 this(title, description, value, color,display, timestamp); 43 TimeLineGraphItem(String title, String description,double value,Color color,boolean display, long timestamp) { argument 44 this(title, description, value, color,timestamp); 48 TimeLineGraphItem(String title, String description, double value, Color color,long timestamp) { argument 53 this.timestamp=timestamp; [all...] |
H A D | TimeLineGraph.java | 148 public void addItem(String groupName,String name, String description, double value, Color col, boolean display, long timestamp) { argument 149 addItem(groupName, name, description, value, col, display, timestamp,false); 152 public void addItem(String groupName,String name, String description, double value, Color col, boolean display, long timestamp,boolean isSpecial) { argument 154 timestamp,isSpecial,false); 157 public void addItem(String groupName,String name, String description, double value, Color col, boolean display, long timestamp,boolean isSpecial,boolean drawBaseline) { argument 164 timestamp,isSpecial,drawBaseline)); 212 if (graphItem.timestamp > mostRecentTimestamp) { 213 mostRecentTimestamp = graphItem.timestamp; 250 if (thisItem.timestamp==-1) 267 long minimumTimeDiffPreceding=thisItem.timestamp; [all...] |
/external/ipsec-tools/src/racoon/ |
H A D | evt.h | 41 time_t timestamp; member in struct:evtdump
|
/external/libnl/lib/netfilter/ |
H A D | log_msg.c | 100 struct nfulnl_msg_packet_timestamp *timestamp = nla_data(attr); local 103 tv.tv_sec = ntohll(timestamp->sec); 104 tv.tv_usec = ntohll(timestamp->usec);
|
/external/skia/src/gpu/gl/ |
H A D | GrGLTexture.h | 42 const TexParams& getCachedTexParams(GrGpu::ResetTimestamp* timestamp) const { 43 *timestamp = fTexParamsTimestamp; 48 GrGpu::ResetTimestamp timestamp) { 50 fTexParamsTimestamp = timestamp; 47 setCachedTexParams(const TexParams& texParams, GrGpu::ResetTimestamp timestamp) argument
|
/external/vogar/src/vogar/ |
H A D | XmlReportPrinter.java | 78 String timestamp = getGMTTimestamp(); 82 suite.printReport(timestamp, fileName); 126 private void print(KXmlSerializer serializer, String timestamp) throws IOException { argument 133 serializer.attribute(ns, XmlReportConstants.TIMESTAMP, timestamp); 175 void printReport(String timestamp, String fileName) { argument 185 print(serializer, timestamp);
|
/external/deqp/executor/ |
H A D | xeBatchResult.hpp | 50 std::string timestamp; member in class:xe::SessionInfo
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/ |
H A D | BuildProperties.java | 42 private String timestamp; field in class:BuildProperties 43 // the name of the directory containing the builds, typically <buildType>-<buildType><build date>-<timestamp> 106 timestamp = buildProperties.get("timestamp").toString(); 109 "Value for timestamp not found in monitor.properties"); 205 * Returns the timestamp. 209 return timestamp; 221 * Sets the timestamp. 222 * @param timestamp The timestamp t 224 setTimestamp(String timestamp) argument [all...] |
/external/iproute2/ip/ |
H A D | ip.c | 31 int timestamp = 0; variable 212 } else if (matches(opt, "-timestamp") == 0) { 213 ++timestamp;
|
/external/kernel-headers/original/uapi/linux/ |
H A D | dlm_netlink.h | 33 unsigned long timestamp; member in struct:dlm_lock_data
|