HomeSort by relevance Sort by last modified time
    Searched full:newstate (Results 151 - 175 of 597) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
mmstream.h 133 STREAM_STATE NewState) = 0;
189 STREAM_STATE NewState);
224 #define IMultiMediaStream_SetState(This,NewState) (This)->lpVtbl->SetState(This,NewState)
253 static FORCEINLINE HRESULT IMultiMediaStream_SetState(IMultiMediaStream* This,STREAM_STATE NewState) {
254 return This->lpVtbl->SetState(This,NewState);
310 STREAM_STATE NewState);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
state.c 248 if (params && params->StateFlags & ctx->NewState) {
258 if (params /*&& params->StateFlags & ctx->NewState*/) {
266 if (params && params->StateFlags & ctx->NewState) {
445 * If __struct gl_contextRec::NewState is non-zero then this function \b must
458 GLbitfield new_state = ctx->NewState;
572 * Set ctx->NewState to zero to avoid recursion if
575 new_state = ctx->NewState | new_prog_state;
576 ctx->NewState = 0;
632 ctx->NewState |= _NEW_VARYING_VP_INPUTS;
654 ctx->NewState |= _NEW_PROGRAM
    [all...]
clear.c 145 * Flushes the vertices and verifies the parameter. If __struct gl_contextRec::NewState
179 if (ctx->NewState) {
314 if (ctx->NewState) {
405 if (ctx->NewState) {
477 if (ctx->NewState) {
594 if (ctx->NewState) {
matrix.h 110 _mesa_update_modelview_project( struct gl_context *ctx, GLuint newstate );
  /external/mesa3d/src/mesa/main/
state.c 248 if (params && params->StateFlags & ctx->NewState) {
258 if (params /*&& params->StateFlags & ctx->NewState*/) {
266 if (params && params->StateFlags & ctx->NewState) {
445 * If __struct gl_contextRec::NewState is non-zero then this function \b must
458 GLbitfield new_state = ctx->NewState;
572 * Set ctx->NewState to zero to avoid recursion if
575 new_state = ctx->NewState | new_prog_state;
576 ctx->NewState = 0;
632 ctx->NewState |= _NEW_VARYING_VP_INPUTS;
654 ctx->NewState |= _NEW_PROGRAM
    [all...]
clear.c 145 * Flushes the vertices and verifies the parameter. If __struct gl_contextRec::NewState
179 if (ctx->NewState) {
314 if (ctx->NewState) {
405 if (ctx->NewState) {
477 if (ctx->NewState) {
594 if (ctx->NewState) {
matrix.h 110 _mesa_update_modelview_project( struct gl_context *ctx, GLuint newstate );
  /external/chromium_org/third_party/libjingle/source/talk/examples/objc/AppRTCDemo/
APPRTCConnectionManager.m 320 iceGatheringChanged:(RTCICEGatheringState)newState {
322 ^{ NSLog(@"PCO onIceGatheringChange. %d", newState); });
326 iceConnectionChanged:(RTCICEConnectionState)newState {
328 NSLog(@"PCO onIceConnectionChange. %d", newState);
329 if (newState == RTCICEConnectionConnected)
331 NSAssert(newState != RTCICEConnectionFailed, @"ICE Connection failed!");
  /external/skia/src/gpu/
GrGpu.cpp 369 GeometryPoolState& newState = fGeomPoolStateStack.push_back();
371 newState.fPoolVertexBuffer = (GrVertexBuffer*)DEBUG_INVAL_BUFFER;
372 newState.fPoolStartVertex = DEBUG_INVAL_START_IDX;
373 newState.fPoolIndexBuffer = (GrIndexBuffer*)DEBUG_INVAL_BUFFER;
374 newState.fPoolStartIndex = DEBUG_INVAL_START_IDX;
376 (void) newState; // silence compiler warning
  /frameworks/base/core/tests/coretests/src/android/os/storage/
AsecTests.java 529 String newState;
545 public void onStorageStateChanged(String path, String oldState, String newState) {
546 if (localLOGV) Log.i(TAG, "Storage state changed from " + oldState + " to " + newState);
548 this.newState = newState;
610 public void onStorageStateChanged(String path, String oldState, String newState) {
  /frameworks/av/services/camera/libcameraservice/common/
CameraDeviceBase.h 193 virtual void notifyAutoFocus(uint8_t newState, int triggerId) = 0;
194 virtual void notifyAutoExposure(uint8_t newState, int triggerId) = 0;
195 virtual void notifyAutoWhitebalance(uint8_t newState,
  /frameworks/base/core/java/android/app/backup/
WallpaperBackupHelper.java 118 * need to be backed up, write them to the data stream, and fill in newState with the
122 ParcelFileDescriptor newState) {
123 performBackup_checked(oldState, data, newState, mFiles, mKeys);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhoneCall.java 269 State newState = state;
289 if ((newState != mState) && (state != State.DISCONNECTED)) {
290 mState = newState;
  /packages/apps/InCallUI/src/com/android/incallui/
ProximitySensor.java 82 public void onStateChange(InCallState oldState, InCallState newState, CallList callList) {
86 boolean hasOngoingCall = InCallState.INCALL == newState && callList.hasLiveCall();
87 boolean isOffhook = (InCallState.OUTGOING == newState) || hasOngoingCall;
  /packages/providers/MediaProvider/src/com/android/providers/media/
MtpService.java 97 public void onStorageStateChanged(String path, String oldState, String newState) {
99 Log.d(TAG, "onStorageStateChanged " + path + " " + oldState + " -> " + newState);
100 if (Environment.MEDIA_MOUNTED.equals(newState)) {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BleServerService.java 279 public void onConnectionStateChange(BluetoothDevice device, int status, int newState) {
280 if (DEBUG) Log.d(TAG, "onConnectionStateChange: newState=" + newState);
282 if (newState == BluetoothProfile.STATE_CONNECTED) {
  /development/samples/BackupRestore/src/com/example/android/backuprestore/
ExampleAgent.java 87 ParcelFileDescriptor newState) throws IOException {
135 writeStateFile(newState);
209 ParcelFileDescriptor newState) throws IOException {
247 writeStateFile(newState);
  /external/chromium_org/chrome/browser/resources/chromeos/
mobile_setup.js 137 var newState = deviceInfo.state;
138 if (this.state_ == newState)
151 switch (newState) {
266 this.state_ = newState;
  /external/chromium_org/remoting/webapp/
xmpp_connection.js 354 * @param {remoting.SignalStrategy.State} newState
357 remoting.XmppConnection.prototype.setState_ = function(newState) {
358 if (this.state_ != newState) {
359 this.state_ = newState;
  /external/chromium_org/third_party/mesa/src/src/mesa/vbo/
vbo_save_draw.c 102 ctx->NewState |= _NEW_LIGHT;
104 ctx->NewState |= _NEW_CURRENT_ATTRIB;
302 if (ctx->NewState)
319 if (ctx->NewState)
  /external/chromium_org/v8/src/
hydrogen-escape-analysis.cc 63 HCapturedObject* HEscapeAnalysisPhase::NewState(HInstruction* previous) {
76 HCapturedObject* state = NewState(previous);
89 HCapturedObject* state = NewState(previous);
103 HCapturedObject* state = NewState(previous);
  /external/mesa3d/src/mesa/vbo/
vbo_save_draw.c 102 ctx->NewState |= _NEW_LIGHT;
104 ctx->NewState |= _NEW_CURRENT_ATTRIB;
302 if (ctx->NewState)
319 if (ctx->NewState)
  /frameworks/base/services/core/java/com/android/server/
BluetoothManagerService.java 164 public void onBluetoothStateChange(int prevState, int newState) throws RemoteException {
165 Message msg = mHandler.obtainMessage(MESSAGE_BLUETOOTH_STATE_CHANGE,prevState,newState);
    [all...]
  /frameworks/base/tests/HugeBackup/src/com/android/hugebackup/
HugeAgent.java 88 ParcelFileDescriptor newState) throws IOException {
147 writeStateFile(newState);
221 ParcelFileDescriptor newState) throws IOException {
259 writeStateFile(newState);
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiMonitor.java     [all...]

Completed in 914 milliseconds

1 2 3 4 5 67 8 91011>>