-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAndroid-L.csv
We can't make this file beautiful and searchable because it's too large.
14964 lines (10263 loc) · 777 KB
/
Android-L.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
ring.number,number,ring.committer,ring.committed_date,ring.message,ring.domain,project,domain,committer,committed_date,message,files,reason,manual.analysis,Source,dev_dates,expl,bugid,keyword1,keyword2,keyword3,keyword4,keyword5,keyword6,keyword7,keyword8,review,ring.review
0025a86411145eb7cd4971f9234fc21c7b4aced1,7fb36ded9cd5b1d254b63b3091f35c1e6471b90e,ngeoffray@google.com,2014-07-11,"Revert ""Revert ""Revert ""Add implicit null and stack checks for x86""""""
Broke the build.
This reverts commit 7fb36ded9cd5b1d254b63b3091f35c1e6471b90e.
Change-Id: I9df0e7446ff0913a0e1276a558b2ccf6c8f4c949
",android,platform/art,android,dallison@google.com,2014-07-10,"Revert ""Revert ""Add implicit null and stack checks for x86""""
Fixes x86_64 cross compile issue. Removes command line options
and property to set implicit checks - this is hard coded now.
This reverts commit 3d14eb620716e92c21c4d2c2d11a95be53319791.
Change-Id: I5404473b5aaf1a9c68b7181f5952cb174d93a90d
",38,Compilation error,1,Commit message,1,TRUE,FALSE,build,,,,,,,,"Nicolas Geoffray: Reverted
This patchset was reverted in change: I9df0e7446ff0913a0e1276a558b2ccf6c8f4c949
Dave Allison: Code-Review+2 Verified+1
Self approving after rebase
Wendy Castillo: Reverted
This patchset was reverted in change: I755d58fb16cafadbad45c840279105fd83db4221","Dave Allison: Reverted
This patchset was reverted in change: Ie0760a0c293aa3b62e2885398a8c512b7a946a73
Dmitry Petrochenko: (1 comment)
This change can be recovered in AOSP by defining the ``running_on_host=true`` in runtime/thread.cc if both HAVE_ANDROID_OS and __x86_64__ are defined.
Please return back this change to AOSP :)"
0072ead2f057fb64388c313ed27a62d3bedb17fb,873cd85e9e3bdf3381272483189535f70a547aa9,baligh@google.com,2013-09-12,"Revert ""Import translations. DO NOT MERGE""
This reverts commit 873cd85e9e3bdf3381272483189535f70a547aa9.
Change-Id: I3a7915e7bdb8d590d6bc8a9be4077a2f0a47c959
",android,platform/packages/apps/DeskClock,android,baligh@google.com,2013-09-11,"Import translations. DO NOT MERGE
Change-Id: I05c63bd2a2e1ebe9e8b5664119d240005e0fcb6b
Auto-generated-cl: translation import
",95,Unknown,-1,Gerrit unavailable,1,FALSE,FALSE,,,,,,,,,NA,NA
00aeacd24fc31f10e7c77cb9cced5695ef12f51f,bbd766306b0d04b7e56972bd321d2e7e18f5c23e,hunga@google.com,2013-11-07,"Revert ""Add ""throws IOException"" to MediaCodec constructors (4)""
This reverts commit bbd766306b0d04b7e56972bd321d2e7e18f5c23e.
Change-Id: I02a797e095a8bfe545fa49b4eddcdaf2b1400d16
",android,platform/pdk,android,hunga@google.com,2013-11-05,"Add ""throws IOException"" to MediaCodec constructors (4)
Change to add ""throws IOException"" to android.media.MediaCodec
(createByCodecName|createDecoderByType|createEncoderByType). The exception was
previously thrown through the native JNI, but not explicitly declared.
Requires changes to existing code for declaration compatibility.
Bug: 11364276
Change-Id: I03405db5703f7659b67643ea18c4c0e645ba503b
Signed-off-by: Andy Hung <hunga@google.com>
",1,Unknown,-1,Gerrit unavailable,2,FALSE,FALSE,,,,,,,,,NA,NA
00e1ec6581b5b7b46ca4c314c2854e9caa647dd2,86ec520fc8b696ed6f164d7b756009ecd6e4aace,buzbee@google.com,2014-03-03,"Revert ""Revert ""Rework Quick compiler's register handling""""
This reverts commit 86ec520fc8b696ed6f164d7b756009ecd6e4aace.
Ready. Fixed the original type, plus some mechanical changes
for rebasing.
Still needs additional testing, but the problem with the original
CL appears to have been a typo in the definition of the x86
double return template RegLocation.
Change-Id: I828c721f91d9b2546ef008c6ea81f40756305891
",android,platform/art,android,buzbee@android.com,2014-02-26,"Revert ""Rework Quick compiler's register handling""
This reverts commit 2c1ed456dcdb027d097825dd98dbe48c71599b6c.
Change-Id: If88d69ba88e0af0b407ff2240566d7e4545d8a99
",29,Incomplete fix,2,Commit message,5,TRUE,FALSE,compil,problem,,,,,,,"Bill Buzbee: Reverted
This patchset was reverted in change: I828c721f91d9b2546ef008c6ea81f40756305891","Ian Rogers: Code-Review+2
Revert, revert, rework!"
00f8d6c75d22ce8f95f932c5b101354b196fa0df,924205aaf2e0c3c65dda13e0eaccde3e7b2a5c40,commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81,2014-05-29,"Revert ""Revert of add colortable support to imagegenerator (https://codereview.chromium.org/304443003/)""
Fix is to add colortable param to installPixels()
This reverts commit 924205aaf2e0c3c65dda13e0eaccde3e7b2a5c40.
BUG=skia:
R=scroggo@google.com, reed@chromium.org
Author: reed@google.com
Review URL: https://codereview.chromium.org/300263005
git-svn-id: http://skia.googlecode.com/svn/trunk@14958 2bbb7eff-a529-9590-31e7-b0007b416f81
",chromium,platform/external/skia,chromium,commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81,2014-05-28,"Revert of add colortable support to imagegenerator (https://codereview.chromium.org/304443003/)
Reason for revert:
failing tests
Original issue's description:
> add colortable support to imagegenerator
>
> BUG=skia:
>
> Committed: http://code.google.com/p/skia/source/detail?r=14916
R=halcanary@google.com, scroggo@google.com
TBR=halcanary@google.com, scroggo@google.com
NOTREECHECKS=true
NOTRY=true
BUG=skia:
Author: reed@google.com
Review URL: https://codereview.chromium.org/300873007
git-svn-id: http://skia.googlecode.com/svn/trunk@14917 2bbb7eff-a529-9590-31e7-b0007b416f81
",9,Unknown,-1,Commit message,1,TRUE,FALSE,,BUG,,,google,vi,,,NA,NA
010a1a1a552cdaad362cea8a0333b8906402dbcb,e2a9c29f35e0c09782558542fc4cf9823779590e,hunga@google.com,2014-03-13,"Revert ""Revert ""Convert AudioFlinger mSinkBuffer to flexible format""""
This reverts commit e2a9c29f35e0c09782558542fc4cf9823779590e.
",android,platform/frameworks/av,android,elaurent@google.com,2014-03-13,"Revert ""Convert AudioFlinger mSinkBuffer to flexible format""
This reverts commit e7e676fd2866fa4898712c4effa9e624e969c182.
Bug: 13450717.
Change-Id: Ib80b0d14428fecce33c62003a1fcf83f71cee03b
",2,Unknown,-1,Commit message,0,FALSE,FALSE,,,,,,,,,NA,NA
01b6a878d10ee68db87c3d85d137e81a5257a78a,a6e8689807f5a8bb9470ce7c26a47455d2d0608d,nfuller@google.com,2014-07-17,"Revert ""Add a cache for ZoneInfo objects in Java""
This reverts commit a6e8689807f5a8bb9470ce7c26a47455d2d0608d.
Change-Id: I17a0262d169db3418f2f8888195381f778975dc4
",android,platform/libcore,android,nfuller@google.com,2014-07-16,"Add a cache for ZoneInfo objects in Java
This mirrors the single-item cache in localtime.c.
This is in preparation for an upcoming change to migrate
android.format.text.Time over to Java. It will be making
use of the Java ZoneInfo instead of the native
equivalent.
The Java cache has a size of 1 like the bionic one,
though this can easily be increased.
Given the default TimeZone / ZoneInfo was always
pinned, in many cases the memory usage will not
go up noticeably. In scenarios where applications load
timezones besides the default a cache size of 1 potentially
increases pinned memory usage by one ZoneInfo plus
the overhead of the prototype object held by the cache
(which is never returned to callers).
An example ZoneInfo is ""Europe/London"", which has ~190
transitions (1 int + 1 byte) and ~6 types (1 int + 1 byte).
Overhead of other fields is ~ 13 bytes, plus the ID string.
190 * (4 + 1) + 6 * (4 + 1) + 13 = 993 bytes.
The prototypes held by the cache share the majority of their
memory with their clones returned from
ZoneInfo.makeTimeZone() and so the overhead of introducing
the cache itself should be in the order of a few tens of
bytes at most.
In future we may want to increase the cache size to 2 in
order to support apps that compare / switch timezones to
increase the odds of the default remaining in the cache.
Sizes above 2 look increasingly specialist.
Change-Id: I0b7daa8ad5d334c8d421dfaa6e0421d3c181a915
",4,Unknown,-2,No meaningful Gerrit,1,FALSE,FALSE,,,,,,,,,"Neil Fuller: Reverted
This patchset was reverted in change: I17a0262d169db3418f2f8888195381f778975dc4",NA
01ebfbd0a0a3a89b563ab6c8c346c669eca39a1a,e5244b5638535964103ca1dfc867442a64243db1,kolby@google.com,2014-04-16,"Revert ""Add isRound to WindowInsets""
This reverts commit e5244b5638535964103ca1dfc867442a64243db1.
Change-Id: I6371c718e2189968699e980fd0e7ba91c486aca6
",android,platform/frameworks/base,android,adamp@google.com,2014-04-16,"Add isRound to WindowInsets
isRound allows a view to determine whether the window it is contained
within obscures the corners of the window content. This allows views
aware of this property to adapt their layout accordingly.
Switch ViewRootImpl to use dispatchApplyInsets instead of
fitSystemWindows.
Change-Id: Ic3e3936b73815b2593cb9720af1a309fbd18406e
",3,Unknown,-1,Gerrit unavailable,0,FALSE,FALSE,,,,,,,,,NA,NA
01f27d2c616797e5ba821159f8aca7b75aa54ae1,f4b74430a8c22ab58c3fbbd6c9e7a594514a8615,amitmahajan@google.com,2014-08-12,"Revert ""add apn setting parameters, and set apn parameters to bp""
This reverts commit f4b74430a8c22ab58c3fbbd6c9e7a594514a8615.
Change-Id: I1f300741d858ff39ae573e576479613b084e4616
",android,platform/frameworks/opt/telephony,android,amitmahajan@google.com,2014-08-12,"add apn setting parameters, and set apn parameters to bp
Change-Id: I395b499eb0730894620614b3261bb6a784d53f46
",11,Unknown,-1,Gerrit unavailable,0,FALSE,FALSE,,,,,,,,,NA,NA
0266296b3a85561194cff36829dab4b02153d8f6,4a762c2b589568b7b4c1af4fe313d622a7b339c6,gkasten@android.com,2014-03-20,"Revert ""For checkbuild, disable all Wilhelm tests in 64-bit""
This reverts commit 4a762c2b589568b7b4c1af4fe313d622a7b339c6.
",android,platform/frameworks/wilhelm,android,gkasten@android.com,2014-03-18,"For checkbuild, disable all Wilhelm tests in 64-bit
These depend on libOpenSLES.so or libOpenMAXAL.so,
which in turn depend on libstagefright.so, which is not 64-bit ready yet.
Change-Id: I7b29feb4fdac08edad6b839cf3f8161940fb1555
",8,Temporary workaround,2,Gerrit,2,FALSE,FALSE,build,,,,,,,,NA,"Glenn Kasten: Verified+1 Code-Review+2
original CL is no longer needed now that libstagefright builds"
0266296b3a85561194cff36829dab4b02153d8f6,4a762c2b589568b7b4c1af4fe313d622a7b339c6,gkasten@android.com,2014-03-20,"Revert ""For checkbuild, disable all Wilhelm tests in 64-bit""
This reverts commit 4a762c2b589568b7b4c1af4fe313d622a7b339c6.
",android,platform/frameworks/wilhelm,android,gkasten@android.com,2014-03-18,"For checkbuild, disable all Wilhelm tests in 64-bit
These depend on libOpenSLES.so or libOpenMAXAL.so,
which in turn depend on libstagefright.so, which is not 64-bit ready yet.
Change-Id: I7b29feb4fdac08edad6b839cf3f8161940fb1555
",8,Temporary workaround,2,Gerrit,2,FALSE,FALSE,build,,,,,,,,NA,"Glenn Kasten: Abandoned
dup of https://android-review.googlesource.com/#/c/88491/"
02771588abb2807b8f0d30d13f1a99a72df9b6ba,ad0f6df9eec6aff1f8d1d0fd9edf44b572c47101,narayan@google.com,2014-05-07,"Revert ""mm-video: refer exported display and graphics headers""
This reverts commit ad0f6df9eec6aff1f8d1d0fd9edf44b572c47101.
Change-Id: Iacee57e3f1ea2bf857766cbaa871290cb620fae9
",android,platform/hardware/qcom/media,android,vsrivastava@google.com,2014-05-06,"mm-video: refer exported display and graphics headers
Not referring to absolute location avoids changing paths
each time display headers are moved.
Change-Id: Id5a67a7ab40b6c3e0b228be1930e1e0b7144c387
",5,Unknown,-1,Gerrit unavailable,1,FALSE,FALSE,,,,,,vi,,,NA,NA
028e0565958ee3f9c6047cd469c8af9da3f9f624,1b556c3270b3af0d2123901f7b31e105bb22f8fe,android-build@android.com,2014-01-07,"Revert ""Make ping enforcing.""
Causing adbd to run at 100% cpu utilization when the following
sequence of commands are run:
1) Run the command ""adb shell ping -c 1 -w 5 www.google.com"" for 5 times
2) Run ""adb shell top -m 5""
The following denial occurs:
<5>[ 20.647559] type=1400 audit(1389054327.861:21): avc: denied { sigchld } for pid=1989 comm=""adbd"" scontext=u:r:ping:s0 tcontext=u:r:adbd:s0 tclass=process
Reverting for now.
This reverts commit 1b556c3270b3af0d2123901f7b31e105bb22f8fe.
Bug: 12251052
Change-Id: I1b9920624f49b0aed2226c41a45005aff228d9e8
",android,platform/external/sepolicy,others,sds@tycho.nsa.gov,2013-12-06,"Make ping enforcing.
Change-Id: Ib43bc4027e74660f653ec90335741acc792739da
Signed-off-by: Stephen Smalley <sds@tycho.nsa.gov>
",1,Defect reported,1,Commit message,32,TRUE,TRUE,,Bug,,,google,,,,NA,NA
02a7b78eab58840cf5c060e6861dfb9a539c3177,9d629b6daba8c433fe014728e1ad07e034906c79,adamp@google.com,2014-07-22,"Revert ""Revert ""Block focus with a touchscreen for ActionBars and Toolbars""""
This reverts commit 9d629b6daba8c433fe014728e1ad07e034906c79.
Once more, with feeling!
Bug 16284253
",android,platform/frameworks/base,android,baligh@google.com,2014-07-15,"Revert ""Block focus with a touchscreen for ActionBars and Toolbars""
This reverts commit a2933761d17bc5106357a1edd9bd3ff978160133.
Change-Id: Idedd430574925a0e86311a3d9fee51a74731c2f8
(cherry picked from commit d886cf139532a78b2d34d13403f10295a9bbd14e)
",3,Unknown,-1,Commit message,7,TRUE,FALSE,,Bug,,,,,,,NA,NA
02c4a80afea802859c5cb4d1033a7374c3132c96,f1784266ec80244dcefdbd70a43147f1cd847547,kwakasa@google.com,2014-08-07,"Revert ""Align hint label to bottom""
This reverts commit f1784266ec80244dcefdbd70a43147f1cd847547.
Due to unit test breakage.
Bug: 14419121
Change-Id: Ibc201649e71135292530b26337d9305a6681f446
",android,platform/packages/inputmethods/LatinIME,android,takaoka@google.com,2014-08-07,"Align hint label to bottom
Bug: 14419121
Change-Id: I9147d3c4a3687ed745ffdddfff221d88652919b2
",4,Defect introduced,1,Commit message,0,TRUE,TRUE,,Bug,,,,,,,NA,NA
02c6723e22e8acaec4905a1ba25ecc96cd7eb48c,a0dafc9aacecdf45cbc20f1d0acbff789f56e607,gcondra@google.com,2013-10-22,"Revert ""Revert ""Temporary revert to fix the build.""""
This reverts commit a0dafc9aacecdf45cbc20f1d0acbff789f56e607.
Change-Id: I3b1b3a0b3f5c43c0d8f6dc0b6f2f5738b09c1e81
",android,platform/system/extras,android,gcondra@google.com,2013-10-21,"Revert ""Temporary revert to fix the build.""
This reverts commit d1cda72457fed396942ae58f689ce84de7af3e9e.
Change-Id: Ia072e7adee68a1fbb21ae0f9fa38d61b461fb39f
",8,Unknown,-1,Commit message,1,FALSE,FALSE,build,,,,Tempora,,,,NA,NA
03b37b67755a4033c6be32ae2e389c310e06e7d1,3beec5e255c514dc419e5cc3021d178b3a416d40,amitmahajan@google.com,2014-08-21,"Revert ""Revert ""Add code to handle voice radio technology of LTE.""""
This reverts commit 3beec5e255c514dc419e5cc3021d178b3a416d40.
Bug: 17035252
Change-Id: Ife832f79627f64aa419af5881b8ac0ef32954c3c",android,platform/frameworks/opt/telephony,android,amitmahajan@google.com,2014-07-25,"Revert ""Add code to handle voice radio technology of LTE.""
This reverts commit b54cd09892e0676d719e6df00e60c77b663f993c.
PhoneProxy.java should not be reverted because we want phoneObjectUpdater() to always be called from the handler function. That is done in commit I2fc7220496e66fc2a48f2609e94cbd8eed6adc44
Change-Id: I83b4ffe40a30207ca01d4268de2fc1cde8fff602",7,Unknown,-1,Commit message,27,FALSE,TRUE,,Bug,,,,,,,NA,NA
03c9785a8a6d712775cf406c4371d0227c44148f,83b1940e6482b9d8feba5c492507735686650ea5,dallison@google.com,2014-08-14,"Revert ""Revert ""Reduce stack usage for overflow checks""""
Fixes stack protection issue.
Fixes mac build issue.
This reverts commit 83b1940e6482b9d8feba5c492507735686650ea5.
Change-Id: I7ba17252882b23a740bcda2ea94aacf398255406
",android,platform/art,android,dallison@google.com,2014-08-14,"Revert ""Reduce stack usage for overflow checks""
This reverts commit 63c051a540e6dfc806f656b88ac3a63e99395429.
Change-Id: I282a048994fcd130fe73842b16c21680053c592f
",30,Compilation error,1,Commit message,0,TRUE,FALSE,,,,,,,,,NA,NA
040b52fe85a67eeb6d9a4e9dc20322ee36ad4aec,0cf8a191dc00081c2ef3256c6d18a143404544fc,asapperstein@google.com,2014-04-16,"Revert ""Speculative fix for b/13772061.""
This reverts commit 0cf8a191dc00081c2ef3256c6d18a143404544fc.
",android,platform/packages/apps/UnifiedEmail,android,ath@google.com,2014-04-15,"DO NOT MERGE Speculative fix for b/13772061.
Posts requestLayout and invalidate instead
of just calling postInvalidate(). Only posts
if postAddView is true.
Change-Id: I27c58ed059d7af231b277975634e41ae1572de74
(cherry picked from commit 0744489dd3c80c56b9eded95ae027b7089cbf5a3)
",1,Unknown,-1,Gerrit unavailable,1,FALSE,FALSE,,,,,,,,,NA,NA
048a2956dac358d14139e1fab6746c9cd0d25106,75cf76875e7369926b57ab5f970041b7625745f5,skennedy@google.com,2014-04-01,"Revert ""email: add support for Server Name Indication (SNI)""
This reverts commit 75cf76875e7369926b57ab5f970041b7625745f5.
Bug: 13744933
Change-Id: I6ef39dfa13dcadc5a41c79f65bc0eed9d27dd447
",android,platform/packages/apps/Email,android,skennedy@google.com,2014-03-31,"email: add support for Server Name Indication (SNI)
Change the underlaying socket factory reference to SSLCertificateSocketFactory which
has support for SNI since 4.2, and remove the access to the obsolete methods from
the old factory reference.
This change will setup the socket with a proper hostname prior to the ssl handshake.
Change-Id: Ie537b1d8c3da33de3665e481320be134939155ca
Signed-off-by: Jorge Ruesga <j.ruesga.criado@gmail.com>
",2,Unknown,-1,Gerrit unavailable,1,TRUE,TRUE,,Bug,,,,,,,NA,NA
04c6d73fd0e4472505275688ef8497bc6697647c,8828d86e79424fc1c7b7d1f908e3450879d5cea0,justinkoh@google.com,2014-09-26,"Revert ""DO NOT MERGE Fix race condition between binder deaths""
This reverts commit 8828d86e79424fc1c7b7d1f908e3450879d5cea0.
Change-Id: I211f7b78a286868d8441323ff3c9cf4d7482fb61
",android,platform/frameworks/base,android,kma@google.com,2014-09-26,"DO NOT MERGE Fix race condition between binder deaths
If a Binder dies there is a race between activity manager and window
manager to see who can handle the binderDied call first. If the
activity manager wins the race it will remove the activity and task
but leave the windows around. Until the WindowState.binderDied call
is made and all animation is complete the windows will try to access
the task that they were associated with.
This fix removes the windows of an activity when the activity is
removed. It also defers removal of the activity and task until
exiting windows have completed their animation.
Fixes bug 17031518.
Change-Id: Idf52f55c5feb0cad4e3664ef2eae5b7e95bbf490
(cherry picked from commit 5acd163b828d5b26408eb3a7904d750a1570239e)",3,Unknown,-1,Gerrit unavailable,0,FALSE,FALSE,,,,,,,,,NA,NA
053ec4b20d1642b8ca5be925ad8e0b0e98324a6e,a934f018b6c6a7eda4662a60f2f04828afc3ab77,android-build@google.com,2014-10-10,"Revert ""Unable to connect to a Motorola s705 until Bluetooth was toggled of and back on""
This reverts commit a934f018b6c6a7eda4662a60f2f04828afc3ab77.
This patch caused various headset audio break issues and slow
reconnections on headsets like the Bose AE2W.
Based on the original bug under which this patch was merged
(b/10648781) it is unlikely that this bug even fixed the
issue it was meant to address.
Bug: 17520043
Change-Id: I39bb9abbf5735abff25b5257425c34972287dc27
",android,platform/external/bluetooth/bluedroid,android,zhihaixu@google.com,2013-10-10,"Unable to connect to a Motorola s705 until Bluetooth was toggled of and back on
we should use the same role as the previous connection, if phone walk out of range,
and reconnect back from remote device.
bug:10648781
Change-Id: I6abd77067d26769067ba2fbd45d9e8f75cf7c764
",6,Temporary workaround,1,Commit message,365,TRUE,TRUE,,Bug,,,,,,,NA,NA
0637c1f909e55b1a0351387a82fe5fadd2cb9808,5796dad9a41e9801878f2cf0feb76977da4b025b,jinwoong@google.com,2013-12-05,"Revert ""Fix for formatting of Korean/Japanese text which is displayed upon default SMS app change Bug: 11923434 Change-Id: I34a353137338b0f8d55e2309f037c34922141181""
This reverts commit 5796dad9a41e9801878f2cf0feb76977da4b025b.
Change-Id: Ib9de134bef6328dac6aa5a4b6033c584fb672ab5
",android,platform/packages/apps/Settings,android,jinwoong@google.com,2013-12-03,"Fix for formatting of Korean/Japanese text which is displayed upon default SMS app change
Bug: 11923434
Change-Id: I34a353137338b0f8d55e2309f037c34922141181
",2,Unknown,-1,Gerrit unavailable,2,FALSE,TRUE,,Bug,,,,,,,NA,NA
063e20c26943ec82ef1d53a544545e79054e93d3,e087eac404b0e30de427392065e2750acf92bd4a,danalbert@google.com,2014-07-09,"Revert ""Add locale aware APIs.""
Accidentally verified against a dirty tree. Needs the companion change to libc++ to land upstream before I can submit this.
This reverts commit e087eac404b0e30de427392065e2750acf92bd4a.
Change-Id: I317ecd0923114f415eaad7603002f77feffb5e3f
",android,platform/bionic,android,danalbert@google.com,2014-07-09,"Add locale aware APIs.
Since we only support the C locale, we can just forward all of these to
their non-locale equivalents for correct behavior.
Change-Id: Ib7be71b7f636309c0cc3be1096a4c1f693f04fbb
",16,Mis-operation of delivery,1,Commit message,0,TRUE,FALSE,,,,upstream,,,,,"Elliott Hughes: Code-Review+2
on day, son, we'll turn on clang-format for libc/bionic...
Dan Albert: Reverted
This patchset was reverted in change: I317ecd0923114f415eaad7603002f77feffb5e3f
Dan Albert: > on day, son, we'll turn on clang-format for libc/bionic...
And then git blame will become an exciting guessing game :)","Dan Albert: Reverted
This patchset was reverted in change: Ib8c9004efefe75a5346b3af50dfe37952d91eb21"
0641890f68d850e17e8fbf2407e338a4bb18eec1,43a39fe63dfcbb52a2115b60f3e724a54f571880,skennedy@google.com,2014-08-18,"Revert ""Limit how PhotoViewFragment can be subclassed.""
This reverts commit 43a39fe63dfcbb52a2115b60f3e724a54f571880.
Change-Id: I57f4fd150d302a20ea6f24dcae2cc7a1f09cfc3a
",android,platform/frameworks/opt/photoviewer,android,mathewi@google.com,2014-06-12,"Limit how PhotoViewFragment can be subclassed.
Make (nearly) all protected things private, and make all public methods
final. Add a comment indicating the limited scenarios where you do need to
subclass the fragment.
Change-Id: Ic3f7460231220e8e7349da068a5e9f1b80ef5fdd
",1,Unknown,-1,Gerrit unavailable,67,FALSE,FALSE,,,,,,Vi,,,NA,NA
0666bc1c2ba5edb777ec8f2c93441e131272c2a1,1db3d860ca0d7380c5a6a3a0f95751565f23043b,android-build@google.com,2014-07-30,"Revert ""[HW6] Split processing and applying the event.""
This reverts commit 1db3d860ca0d7380c5a6a3a0f95751565f23043b.
Reverting due to a few critical bugs and unit test failures.
Change-Id: I5e2d02300320438ef9c29577ec5b0860ea91d822
",android,platform/packages/inputmethods/LatinIME,android,jchalard@google.com,2014-07-29,"[HW6] Split processing and applying the event.
If anyone has better names for those...
Change-Id: Ia2dfc75381816bd688948647e2c50c10657b9e89
",3,Defect introduced,1,Commit message,1,TRUE,FALSE,,bug,,,,,,,NA,NA
068b71dd9cd6cb03dfcdc0c9deced361780bc0d3,5ccecfd26d2a7c3a79a139f0118b93ee64be4737,ccross@google.com,2013-09-27,"Revert ""Fastbootd: flashing certification""
This reverts commit 5ccecfd26d2a7c3a79a139f0118b93ee64be4737.
Change-Id: I0ca31094c115e14982a27c258d9139a723da8428
",android,platform/system/core,android,sstar@google.com,2013-09-26,"Fastbootd: flashing certification
Change-Id: I564086908942463eebee69449d484ba03effc50e
",10,Unknown,-1,Gerrit unavailable,1,FALSE,FALSE,,,,,,,,,NA,NA
06b3255118ed4b92361c195dc77e6b600fe24c21,ca37190711ca48a6bfd6b5700a54cd580abd1e5b,wangying@android.com,2014-01-22,"Revert ""Fix filter rule when checking for apks in PRODUCT_COPY_FILES.""
This reverts commit ca37190711ca48a6bfd6b5700a54cd580abd1e5b.
Change-Id: I3a76f4cdf92ecbe3059bf5856cf341874e1393cf
",android,platform/build,others,rpcraig@tycho.ncsc.mil,2014-01-17,"Fix filter rule when checking for apks in PRODUCT_COPY_FILES.
PRODUCT_COPY_FILES entries can include the src:dest:owner
syntax versus src:dest. This causes the filter to miss
certain cases. Instead use the word-colon function to
grab the dest regardless of syntax.
Change-Id: I1f4e57a236c1db148bada0cfe5bd1e87bb1194d6
Signed-off-by: rpcraig <rpcraig@tycho.ncsc.mil>
",1,Compilation error,2,Gerrit,5,FALSE,FALSE,,,,,,,,,"Robert Craig: Sorry for the noise. They both have the problem at the moment.
Stephen Hines: Any ETA on updated prebuilts. We just lost the ability to build for Hammerhead in AOSP, and that is quite unfortunate.
Ying Wang: I don't know the released tarballs are being used in master too.
I'm going to revert this change and submit it to our internal source tree instead.
Robert Craig: The tar in question is actually lge-hammerhead-kot49h-e6165a67.tgz
Robert Craig: Though not related at all to SELinux, I noticed this issue while doing something else and thought I would bring it to your attention.
The idea of having apks directly copied via the PRODUCT_COPY_FILES var is typically prohibited because, I imagine, the build system doesn't get a chance to resign the keys during a normal build. The correct way always seemed to be with building a correct stanza which included the LOCAL_CERTIFICATE and BUILD_PREBUILT vars. Because the current filter doesn't correctly parse the src:dest:owner syntax certain apps get included via the PRODUCT_COPY_FILES.
For instance, the lge-hammerhead-kot49h-e6165a67.tgz actually includes 3 apks and uses the PRODUCT_COPY_FILES var. I'm thinking this should of been throwing an error.
Accepting this change now would certainly break things because the hammerhead build would die when trying to include the apks from the existing lge-hammerhead-kot49h-e6165a67.tgz tar.
Stephen Hines: I don't quite understand why this change is breaking with hammerhead. If it is just a matter of deleting that lone prebuilt file, we can certainly proceed with that as the workaround. We should just document what needs to be done here.
Ying Wang: Reverted
This patchset was reverted in change: I3a76f4cdf92ecbe3059bf5856cf341874e1393cf
Ying Wang: We should fix the prebuilt apks in that case.
Nick Kralevich: Ying: can you take a look at this? Makefiles are voodoo magic to me... The change itself seems reasonable, although like Robert pointed out, we'd need to test / fix the hammerhead build.
Ying Wang: Oh, the prebuilts are downloaded from our website and populated into the source tree after you sync the tree. I guess we can't update the tarballs already released? Aren't the released tarballs just for the KitKat source tree?
Robert Craig: Ying: Is it safe to take this at the moment? Unless there is a change to the corresponding lge-hammerhead-krt16m-0efa9c33.tgz tar then master should break when trying to build hammerhead.",NA
073c5e91be587a9f90fe39719e1e9fa7cd2a3525,a66301743224ed885fc1b5275acd16f4843a03f5,vsrivastava@google.com,2014-05-08,"Revert ""Revert ""Revert ""mm-video-v4l2: reconcile to CAF tip""""""
This reverts commit a66301743224ed885fc1b5275acd16f4843a03f5.
Change-Id: Ic7148d1fc268611b4feb2c6d37d1394d3fb273cb
",android,platform/hardware/qcom/media,android,vsrivastava@google.com,2014-05-08,"Revert ""Revert ""mm-video-v4l2: reconcile to CAF tip""""
This reverts commit f84ff736ed4e9e3c52a6341f7f2f5f325d8b5bab.
",59,Unknown,-1,Commit message,0,FALSE,FALSE,,,,,,vi,,,NA,NA
07dde4c314e01a4e146d404b2b3351c41f564663,249c26de823be0f9a84a9f092c776bcd9830fba5,salyzyn@google.com,2014-05-21,"Revert ""libnetutils: Turn on -Werror""
This reverts commit 249c26de823be0f9a84a9f092c776bcd9830fba5.
Change-Id: I2a56c574fa8d842d5f3c51fd57ecf078838fcfec
",android,platform/system/core,android,salyzyn@google.com,2014-05-21,"libnetutils: Turn on -Werror
Change-Id: Ie6754f41f9348852a02cc0ff35befb5a76ac2882
",1,Unknown,-2,No meaningful Gerrit,0,FALSE,FALSE,,,,,,,,,"Mark Salyzyn: Reverted
This patchset was reverted in change: I2a56c574fa8d842d5f3c51fd57ecf078838fcfec
Mark Salyzyn: Code-Review+1 Verified+1",NA
0807b7eda871d2c5832e7650de6835ea5792b4e5,72e51dbcb943d0de053e60978e6eb3d6c951d635,teresako@google.com,2014-02-25,"Revert ""Add opt-in setting to everglades.""
This reverts commit 72e51dbcb943d0de053e60978e6eb3d6c951d635.
Change-Id: I595397f4d528e62c69021eaf25f60ebf288b5ab8
",android,platform/packages/apps/Camera2,android,teresako@google.com,2014-02-25,"Add opt-in setting to everglades.
Change-Id: I0af5b7faffa29ca9194fe2764024335ff08bb131
",5,Unknown,-1,Gerrit unavailable,0,FALSE,FALSE,,,,,,,,,NA,NA
0813e29817c1efbb7b7c8e55138f763199fc4c51,453df8e6e33f30808ea2244eaa1dd32169996129,rcervera@google.com,2014-10-14,"Revert ""docs: Watermarked images for codes that weren't found.""
Remove easter eggs.
This reverts commit 453df8e6e33f30808ea2244eaa1dd32169996129.
Change-Id: Iaa8c815a876d163c35cc83f3cf4899dd426def7b
",android,platform/frameworks/base,android,rcervera@google.com,2014-04-18,"docs: Watermarked images for codes that weren't found.
Details:
Line 84
http://goo.gl/1QTi2T
http://developer.android.com/design/get-started/ui-overview.html
http://developer.android.com/design/media/ui_overview_notifications.png
Line 81
http://goo.gl/bHjQsk
http://developer.android.com/design/style/touch-feedback.html
http://developer.android.com/design/media/touch_feedback_communication.png
Line 76
http://goo.gl/HGUj4v
http://developer.android.com/design/patterns/navigation-drawer.html
http://developer.android.com/design/media/navigation_drawer_titles_icons.png
Line 11
http://goo.gl/yYQniH
http://developer.android.com/design/patterns/selection.html
http://developer.android.com/design/media/selection_adjusting_actions.png
Line 10
http://goo.gl/M2QJa7
http://developer.android.com/design/building-blocks/dialogs.html
http://developer.android.com/design/media/dialogs_examples.png
Change-Id: I5df9288b97a9ca58df9f596ae6624c5c91911b3a
",5,Unknown,-1,Gerrit unavailable,179,TRUE,FALSE,,,,,,,,,NA,NA
081f73e888b3c246cf7635db37b7f1105cf1a2ff,754ddad084ccb610d0cf486f6131bdc69bae5bc6,dallison@google.com,2014-04-07,"Revert ""Use trampolines for calls to helpers""
This reverts commit 754ddad084ccb610d0cf486f6131bdc69bae5bc6.
Change-Id: Icd979adee1d8d781b40a5e75daf3719444cb72e8
",android,platform/art,android,dallison@google.com,2014-04-04,"Use trampolines for calls to helpers
This is an ARM specific optimization to the compiler
that uses trampoline islands to make calls to runtime
helper functions. The intention is to reduce the size
of the generated code (by 2 bytes per call) without
affecting performance.
By default this is on when generating an OAT file. It is
off when compiling to memory.
To switch this off in dex2oat, use the command line option:
--no-helper-trampolines
Enhances disassembler to print the trampoline entry on the
BL instruction like this:
0xb6a850c0: f7ffff9e bl -196 (0xb6a85000) ; pTestSuspend
Bug: 12607709
Change-Id: I9202bdb7cf21252ad807bd48701f1f6ce8e3d0fe
",29,Incomplete fix,2,Gerrit,3,FALSE,FALSE,,,,,,,,,"Dave Allison: Patch Set 10: Reverted
This patchset was reverted in change: Icd979adee1d8d781b40a5e75daf3719444cb72e8
Bill Buzbee: Patch Set 10:
(1 comment)
Dave Allison: Patch Set 10: Code-Review+2 Verified+1
This has previously been approved by irogers.
Dave Allison: Patch Set 10:
(1 comment)
Dave Allison: Patch Set 10:
(1 comment)
Dave Allison: Patch Set 10:
You may have a point there. Because the deduplication is done by comparing the binary code before the relocations are applied it is indeed possible that two sequences that exactly the same except for the helper calls will be wrongly deduplicated.
Thanks. I'll deal with that by putting the helper offset into the instruction prior to relocation.
Nice catch.
Mathieu Chartier: Patch Set 10:
(1 comment)
Vladimir Marko: Patch Set 10:
What's there to stop the compiler from deduplicating the code of two methods that call different helpers but are otherwise identical?","Dave Allison: Reverted
This patchset was reverted in change: Ibd777f8ce73cf8ed6c4cb81d50bf6437ac28cb61
Dave Allison: Reverted
This patchset was reverted in change: I83700a4b990005fe0d469d3adccf281bfd5bfcbe"
08424b125b1ac28206341f2224d128bbe40d8701,72618c3363c83f2668dab4495b100a61d6d8700a,android-build@google.com,2014-07-28,"Revert ""Load the WebView Java code from an APK."" DO NOT MERGE
This reverts commit 72618c3363c83f2668dab4495b100a61d6d8700a.
Bug: 16448724
",android,platform/frameworks/base,android,torne@google.com,2014-07-18,"Load the WebView Java code from an APK.
Use the WebView APK to load the Java code via createPackageContext.
Bug: 16329371
Change-Id: I1292edab639d85c2027dc8ebb52def8c36d41cde
",1,Unknown,-1,Gerrit unavailable,10,FALSE,TRUE,,Bug,,,,Vi,,,NA,NA
08ff802151ea3089a5f352dfc795c99017c1d122,f010a05c7e9a23b6083294aff4a8183ab01f686e,hboehm@google.com,2014-09-02,"Revert ""Revert ""Revert ""Revert ""Remove incorrect android_atomic_...64 use.""""""""
After fixing b/16874785.
This reverts commit f010a05c7e9a23b6083294aff4a8183ab01f686e.
Original comment, which actually describes the effect of this:
Change the mExtras field in Binder.h to be a stdatomic.h atomic
value, and replace references to it with proper stdatomic.h calls.
This removes one of a small number of remaining 64 bit
android_atomic references. It also replaces the erroneously
non-atomic read accesses to mExtras.
It would be better if this used the C++11 <atomic> facility,
but we don't quite have that yet.
Fixes
Bug:16513433
Change-Id: I1645ca5d6f60595bf5d388913665ce4b8780b26d
(cherry picked from commit 3effababf2980d029339522fdc914bdeb913d99b)
",android,platform/frameworks/native,android,hboehm@google.com,2014-08-09,"Revert ""Revert ""Revert ""Remove incorrect android_atomic_...64 use.""""""
This reverts commit 66629e0de532376fa3ef43175ad05eccd21114da.
Change-Id: Ic298b345d0e500d18e4297b00e755ce3340f13fb
",2,Unknown,-1,Commit message,24,TRUE,TRUE,,Bug,,,,,,,"Hans Boehm: Reverted
This patchset was reverted in change: I1645ca5d6f60595bf5d388913665ce4b8780b26d",NA
08fffc5db640f999a604878317342a1473f63c95,43ddc1069492ed3245a5c686ab5e0eabc618bf74,sds@tycho.nsa.gov,2014-01-13,"Revert ""Revert ""Strip file execute permissions from unconfined domains.""""
The recovery console now has its own domain and therefore we do not
need to allow this for unconfined domains.
This reverts commit 43ddc1069492ed3245a5c686ab5e0eabc618bf74.
Change-Id: Id2d2c02ccf6ac38c48b07ab84b73348cd9c815fa
",others,platform/external/sepolicy,android,nnk@google.com,2014-01-10,"Revert ""Strip file execute permissions from unconfined domains.""
I'd like to do more testing to make sure OTA updates aren't broken by this change. Until we do the testing, let's rollback this change.
This reverts commit 5da08810bb0e5724cfc45455cb88dd5fdf8a2d31.
Change-Id: I56a7f47a426cfd3487af1029283bd8ce182d5ab2
",1,Unknown,0,Commit message,3,TRUE,FALSE,,,,,,,,,"Nick Kralevich: ``adb pull /proc/kmsg`` that is
Stephen Smalley: <5>[ 4.069897] type=1400 audit(3289327.630:4): avc: denied { create } for pid=129 comm=``ueventd`` name=``mem`` scontext=u:r:kernel:s0 tcontext=u:object_r:kmem_device:s0 tclass=chr_file
<5>[ 4.070009] type=1400 audit(3289327.630:5): avc: denied { setattr } for pid=129 comm=``ueventd`` name=``mem`` dev=``tmpfs`` ino=6304 scontext=u:r:kernel:s0 tcontext=u:object_r:kmem_device:s0 tclass=chr_file
<5>[ 4.365782] type=1400 audit(3289327.920:6): avc: denied { execmem } for pid=132 comm=``recovery`` scontext=u:r:kernel:s0 tcontext=u:r:kernel:s0 tclass=process
Stephen Smalley: Looks like recovery is broken even with this; presumably one of the prior changes to unconfined.te broke something running in the recovery in the init domain. Not sure how to get denials from recovery; no adb shell there.
Nick Kralevich: cat /proc/kmsg
cat /proc/last_kmsg
?
Nick Kralevich: Ya, let's revert I842f5a2ac5921cc2bd0ab23a091eb808fdd89565 just in case...
Nick Kralevich: We do OTAs on Mondays through Thursday. The last OTA would have been yesterday. The kmem_device change has been there for quite a while, so it doesn't seem to be causing any problems. The execmem denial may be new as a result of 4e416ea4caf023299c84f4a06f3db59dd9aa1967 ... Not sure.
Still no complains about problems with OTAs, but I won't know until the next OTA goes out on Monday.
Stephen Smalley: We never set up the recovery init.rc seclabel entries as it used to be permissive only and no way to set enforcing there.
So looks like everthing is running in kernel domain and
prior changes to unconfined.te to strip kmem_device and execmem are triggering.
Stephen Smalley: Ok, may want to revert I842f5a2ac5921cc2bd0ab23a091eb808fdd89565 or add execmem to kernel domain until we resolve this issue.","Иосиф Рождественский: Reverted
This patchset was reverted in change: If29dcbbbadd1bf3145eca4a259f620a0542ed2ac"
091ddb1374e3bcdac129c1df5ef2555cf5c2183e,39b7353acacf08a3c0204a9ec122fff420e53310,ccraik@google.com,2014-04-17,"Revert ""Add convenience methods, to encourage usage of ALL_SAVE_FLAG""
This reverts commit 39b7353acacf08a3c0204a9ec122fff420e53310.
Change-Id: I732eab8a2843dd23c86bd1526ec95db5352d39a0
",android,platform/frameworks/base,android,ccraik@google.com,2014-04-17,"Add convenience methods, to encourage usage of ALL_SAVE_FLAG
Change-Id: I29aefd70071ff49a259db5c06dded3cd531f6ef1
",2,Unknown,-1,Gerrit unavailable,0,FALSE,FALSE,,,,,,,,,NA,NA
0921204660b9597de795065d0350a787035ad589,26d6799bbe170b0955f564974b584c1471efdca1,danalbert@google.com,2014-06-05,"Revert ""Remove ftime from bionic LP64""
Breaking some build... will look in to it later.
This reverts commit 26d6799bbe170b0955f564974b584c1471efdca1.
Change-Id: I35fa770221be3a181bd37c6c3dce1bf37a69a4a1
",android,platform/bionic,android,danalbert@google.com,2014-06-04,"Remove ftime from bionic LP64
Bug: 13935372
Change-Id: I5dd31147143b23a090a3b75b846dc5354e599121
",4,Compilation error,1,Commit message,1,TRUE,FALSE,build,,,,,,,,"Dan Albert: Reverted
This patchset was reverted in change: Idbe6565f9e5b2936625b3675f72cda8e8d9d74f3
Dan Albert: Verified+1
Just one dependent change in compiler-rt: https://android-review.googlesource.com/#/c/96779/
Dan Albert: Reverted
This patchset was reverted in change: I35fa770221be3a181bd37c6c3dce1bf37a69a4a1","Dan Albert: Reverted
This patchset was reverted in change: I749af8d7d429cda9f9d09a75bd30df54e6b1dd65"
097e840b062b5191dac757dc998cd072ac7f308a,b1b12f8ad49ecbba7dd6b9db2a0ca8fafa532d82,dcashman@google.com,2014-06-16,"Revert ""Allow all domains access to /dev/qemu_trace.""
This reverts commit b1b12f8ad49ecbba7dd6b9db2a0ca8fafa532d82.
",android,platform/build,android,dcashman@google.com,2014-06-16,"Allow all domains access to /dev/qemu_trace.
/dev/qemu_trace is used by memcheck on qemu to get memory allocation events
from all processes on the system. Allow all domains to access this device, and
other qemu-specific devices..
Addresses the following denials:
type=1400 audit(1402674828.500:3): avc: denied { read write } for pid=44 comm=""servicemanager"" name=""qemu_trace"" dev=""tmpfs"" ino=1494 scontext=u:r:servicemanager:s0 tcontext=u:object_r:qemu_device:s0 tclass=chr_file
type=1400 audit(1402674828.500:4): avc: denied { open } for pid=44 comm=""servicemanager"" name=""qemu_trace"" dev=""tmpfs"" ino=1494 scontext=u:r:servicemanager:s0 tcontext=u:object_r:qemu_device:s0 tclass=chr_file
type=1400 audit(1402674828.520:5): avc: denied { read write } for pid=42 comm=""logd"" name=""qemu_trace"" dev=""tmpfs"" ino=1494 scontext=u:r:logd:s0 tcontext=u:object_r:qemu_device:s0 tclass=chr_file
type=1400 audit(1402674828.520:6): avc: denied { open } for pid=42 comm=""logd"" name=""qemu_trace"" dev=""tmpfs"" ino=1494 scontext=u:r:logd:s0 tcontext=u:object_r:qemu_device:s0 tclass=chr_file
type=1400 audit(1402674828.610:7): avc: denied { read write } for pid=48 comm=""debuggerd"" name=""qemu_trace"" dev=""tmpfs"" ino=1494 scontext=u:r:debuggerd:s0 tcontext=u:object_r:qemu_device:s0 tclass=chr_file
type=1400 audit(1402674828.610:8): avc: denied { open } for pid=48 comm=""debuggerd"" name=""qemu_trace"" dev=""tmpfs"" ino=1494 scontext=u:r:debuggerd:s0 tcontext=u:object_r:qemu_device:s0 tclass=chr_file
type=1400 audit(1402674829.000:9): avc: denied { read write } for pid=47 comm=""netd"" name=""qemu_trace"" dev=""tmpfs"" ino=1494 scontext=u:r:netd:s0 tcontext=u:object_r:qemu_device:s0 tclass=chr_file
type=1400 audit(1402674829.000:10): avc: denied { open } for pid=47 comm=""netd"" name=""qemu_trace"" dev=""tmpfs"" ino=1494 scontext=u:r:netd:s0 tcontext=u:object_r:qemu_device:s0 tclass=chr_file
type=1400 audit(1402674829.180:11): avc: denied { read write } for pid=53 comm=""installd"" name=""qemu_trace"" dev=""tmpfs"" ino=1494 scontext=u:r:installd:s0 tcontext=u:object_r:qemu_device:s0 tclass=chr_file
type=1400 audit(1402674829.200:12): avc: denied { read write } for pid=45 comm=""vold"" name=""qemu_trace"" dev=""tmpfs"" ino=1494 scontext=u:r:vold:s0 tcontext=u:object_r:qemu_device:s0 tclass=chr_file
type=1400 audit(1402674829.200:13): avc: denied { open } for pid=53 comm=""installd"" name=""qemu_trace"" dev=""tmpfs"" ino=1494 scontext=u:r:installd:s0 tcontext=u:object_r:qemu_device:s0 tclass=chr_file
type=1400 audit(1402674829.200:14): avc: denied { open } for pid=45 comm=""vold"" name=""qemu_trace"" dev=""tmpfs"" ino=1494 scontext=u:r:vold:s0 tcontext=u:object_r:qemu_device:s0 tclass=chr_file
type=1400 audit(1402674829.280:15): avc: denied { read write } for pid=54 comm=""keystore"" name=""qemu_trace"" dev=""tmpfs"" ino=1494 scontext=u:r:keystore:s0 tcontext=u:object_r:qemu_device:s0 tclass=chr_file
type=1400 audit(1402674829.280:16): avc: denied { open } for pid=54 comm=""keystore"" name=""qemu_trace"" dev=""tmpfs"" ino=1494 scontext=u:r:keystore:s0 tcontext=u:object_r:qemu_device:s0 tclass=chr_file
type=1400 audit(1402674830.580:17): avc: denied { read write } for pid=51 comm=""drmserver"" name=""qemu_trace"" dev=""tmpfs"" ino=1494 scontext=u:r:drmserver:s0 tcontext=u:object_r:qemu_device:s0 tclass=chr_file
type=1400 audit(1402674830.580:18): avc: denied { open } for pid=51 comm=""drmserver"" name=""qemu_trace"" dev=""tmpfs"" ino=1494 scontext=u:r:drmserver:s0 tcontext=u:object_r:qemu_device:s0 tclass=chr_file
type=1400 audit(1402674930.860:22): avc: denied { read write } for pid=655 comm=""iptables"" name=""qemu_trace"" dev=""tmpfs"" ino=1494 scontext=u:r:netd:s0 tcontext=u:object_r:qemu_device:s0 tclass=chr_file
type=1400 audit(1402674930.870:23): avc: denied { open } for pid=655 comm=""iptables"" name=""qemu_trace"" dev=""tmpfs"" ino=1494 scontext=u:r:netd:s0 tcontext=u:object_r:qemu_device:s0 tclass=chr_file
Bug: 15570479
Change-Id: I4999a1eb5c25b4238c53fe1e989bcf5fed1ae355
",21,Unknown,-1,Gerrit unavailable,0,FALSE,FALSE,,,,,,,,,NA,NA
099ac787c960ae6d674c9a2643fffb31e0757cef,894f6c971c643a195e72fb5ce28a2fc0b992fbd0,chet@google.com,2014-05-14,"Revert ""Fix bad param tag in javadoc""
This reverts commit 894f6c971c643a195e72fb5ce28a2fc0b992fbd0.
Change-Id: I64b4e146509105d2ec0266b2d8829519f2236c7c
",android,platform/frameworks/support,android,chet@google.com,2014-05-14,"Fix bad param tag in javadoc
Change-Id: Ifd6228fbb63d75ac86d0788b8b9ec076468c4e9a
",1,Unknown,-1,Gerrit unavailable,0,FALSE,FALSE,,,,,,,,,NA,NA
09c026be0c23e3ab8086603a73c5ec5ff2af92b5,fea4efa398ff9c86c300f0c1be92611d1d1fd5ba,lorenzo@google.com,2014-03-08,"Revert ""DO NOT MERGE: Modify the pseudo-header checksum functions.""
This reverts commit fea4efa398ff9c86c300f0c1be92611d1d1fd5ba.
Change-Id: If8199246b3f921e862a5e5ca587d5120906946e0
",android,platform/external/android-clat,android,lorenzo@google.com,2014-03-08,"DO NOT MERGE: Modify the pseudo-header checksum functions.
- Remove the initial checksum, which we don't use anywhere.
- Add the upper-layer protocol to the IPv6 function. Currently
this is always the same as the next header field in the IPv6
header, but technically it's the upper-layer header after all
the extension headers. This is required to support fragments.
Bug: 11542311
Change-Id: Ie1a20fa74ee5bc933c1014bab74ae2957979b2b8
",5,Unknown,-1,Gerrit unavailable,0,FALSE,FALSE,,,,,,,,,NA,NA
0a2ae002e60f7ea9b6bea282086b5eb0ae3c6e51,1bdfbc68e22a64215ab8fa3e3d17676513546997,mount@google.com,2014-06-23,"Revert ""Revert ""API Review: Change View viewName attribute to transitionName.""""
This reverts commit 1bdfbc68e22a64215ab8fa3e3d17676513546997.
Change-Id: Ie3fdf53b33cb2f61c1878055940f52ed9dfc8b08
",android,platform/frameworks/base,android,jreck@google.com,2014-06-23,"Revert ""API Review: Change View viewName attribute to transitionName.""
This reverts commit f1b1adf51b2a84e0ac83685812c7e8d86590af12.
Change-Id: I0e49aeed84f2a548e272a59f4e13c3fb74c2bfd9
",16,Unknown,-1,Commit message,0,FALSE,FALSE,,,,,,vi,,,NA,NA
0a2bc1cc760143e91a7a7cc3f5182e50c0009fcd,9ebc27c73e7096159024605a2c4ab1a4b3abbd83,narayan@google.com,2014-03-11,"Revert ""Revert ""Set 24 hour pref. with ACTION_TIME_CHANGED.""""
This reverts commit 9ebc27c73e7096159024605a2c4ab1a4b3abbd83.
Change-Id: Id440bd004fee696472aeec9eefa5732755b19627
",android,platform/packages/apps/Settings,android,narayan@google.com,2014-02-27,"Revert ""Set 24 hour pref. with ACTION_TIME_CHANGED.""
This reverts commit d5d9d373619de3437593763578854a83f5539306.
Change-Id: I76eeb6f95a4cbbd241db1fb90528b4d91ddf7707
",1,Delivery process,2,Commit message,12,FALSE,FALSE,,,,,,,,,"Narayan Kamath: Reverted
This patchset was reverted in change: Id440bd004fee696472aeec9eefa5732755b19627",Narayan Kamath: The f/b change this depends on has been submitted.
0b1191cfece83f6f8d4101575a06555a2d13387a,31aa97cfec5ee76b2f2496464e1b6f9e11d21a29,buzbee@google.com,2013-10-30,"Revert ""Revert ""Null check elimination improvement""""
This reverts commit 31aa97cfec5ee76b2f2496464e1b6f9e11d21a29.
..and thereby brings back change 380165, which was reverted
because it was buggy.
Three problems with the original CL:
1. The author ran the pre-submit tests, but used -j24 and
failed to search the output for fail messages.
2. The new null check analysis pass uses an interative
approach to identify whether a null check is needed. It
is possible that the null-check-required state may
oscillate, and a logic error caused it to stick in the
""no check needed"" state.
3. Our old nemesis Dalvik untyped constants, in which 0 values
can be used both as object reference and non-object references.
This CL conservatively treats all CONST definitions as
potential object definitions for the purposes of null
check elimination.
Change-Id: I3c1744e44318276e42989502a314585e56ac57a0
",android,platform/art,android,irogers@google.com,2013-10-25,"Revert ""Null check elimination improvement""
This reverts commit 4db179d1821a9e78819d5adc8057a72f49e2aed8.
Change-Id: I059c15c85860c6c9f235b5dabaaef2edebaf1de2
",4,Unknown,-1,Commit message,5,TRUE,FALSE,,problem,,,,vi,,,NA,NA
0b395356087901c16af283b5d9ae821a630cb6ad,e1cdf5253d8c61218fe3b308803408c04f71ffa3,adamcohen@google.com,2014-06-09,"Revert ""Revert transparent bars for L in 3.5. DO NOT MERGE""
This reverts commit e1cdf5253d8c61218fe3b308803408c04f71ffa3.
Change-Id: If107c46fcc3062d990b0de9758045946c8017569
",android,platform/packages/apps/Launcher3,android,sansid@google.com,2014-05-21,"Revert transparent bars for L in 3.5. DO NOT MERGE
Bug: 15082937
Change-Id: I7698744aae83e58902641cf1fcc6ab55c1fcb543
",1,Unknown,-1,Commit message,19,FALSE,FALSE,,,,,,,,,NA,NA
0b5d12c6b4df6ddea2514a6646feb7db68e37ff4,787e9a37b41c67e8683e854538b2743a2bc8fdcd,takaoka@google.com,2014-08-07,"Revert ""Revert ""Add Key label off center attribute""""
This reverts commit 787e9a37b41c67e8683e854538b2743a2bc8fdcd.
Change-Id: I177b8f5d08eb487c19180c09101cc073222c4efe
",android,platform/packages/inputmethods/LatinIME,android,kwakasa@google.com,2014-08-07,"Revert ""Add Key label off center attribute""
This reverts commit ba49920e8046ca592d6c914b2e3f7394bf9c281c.
Due to unit test breakage.
Bug: 14419121
Change-Id: I6f4fc30b86227e59c883d202551b162dc91b4166
",7,Unknown,-1,Commit message,0,FALSE,FALSE,,,,,,,,,NA,NA
0b96e6c44b3c4549bd947fd2947540f4b62a038e,4a73962c694bfe57eb2bea40ed6fb626be7006aa,jessehall@google.com,2014-05-20,"Revert ""opengl: Generate *.in from registry XML""
This reverts commit 4a73962c694bfe57eb2bea40ed6fb626be7006aa.
Change-Id: I1fa5cbe4d0b86f6df69d616157b3fec68d706d7a
",android,platform/frameworks/native,android,jessehall@google.com,2014-05-19,"opengl: Generate *.in from registry XML
There are many non-functional whitespace and parameter name changes
included here. These were introduced upstream when converting from the
old .spec registry to the new XML registry.
There are also some new extensions added. Unfortunately there isn't a
version of the XML that matches the headers the previous versions of
the *.in files were generated from, so I can't separate out the
non-functional changes from the new extensions (other than temporarily
hacking them out of the XML). See below.
Finally, I had to hack the official glext.h. Khronos hasn't updated
the official GLES1 headers since switching to the XML registry, and
there is one critical difference: a ""const void**"" parameter in the
official header is ""const void* const*"" in the registry. I changed the
header to avoid build errors with code generated from the registry.
Dependencies on the *.in files required manually updating some
GLES_trace/ files as well:
- gltrace_api.{h,cpp} must be manually re-generated using
tools/genapi.py.
- New GL prototypes must be manually added to gltrace.proto.
- gltrace.pb.{h,cpp} must be regenerated using aprotoc (see dev.make)
New GLES extensions in libs/GLES_CM/glext_api.in:
- GL_OES_byte_coordinates
- GL_EXT_map_buffer_range
- GL_APPLE_copy_texture_levels
- GL_APPLE_sync
New GLES2 extensions in libs/GLES2/gl2ext_api.in:
- GL_KHR_blend_equation_advanced
- GL_KHR_debug
- GL_OES_sample_shading
- GL_OES_texture_storage_multisample_2d_array
- GL_EXT_disjoint_timer_query
- GL_EXT_draw_buffers
- GL_EXT_draw_instanced
- GL_EXT_instanced_arrays
- GL_EXT_map_buffer_range
- GL_EXT_map_buffer_range
- GL_EXT_multiview_draw_buffers
- GL_EXT_separate_shader_objects
- GL_ANGLE_instanced_arrays
- GL_ANGLE_translated_shader_source
- GL_APPLE_copy_texture_levels
- GL_APPLE_sync
- GL_INTEL_performance_query
- GL_NV_blend_equation_advanced
- GL_NV_copy_buffer
- GL_NV_draw_instanced
- GL_NV_framebuffer_blit
- GL_NV_framebuffer_multisample
- GL_NV_instanced_arrays
- GL_NV_non_square_matrices
Bug: 15028495
Change-Id: Ib3fa700a146adf7f1487a93e459b1e6df0dcdc42
",16,Unknown,-1,Gerrit unavailable,1,FALSE,FALSE,,,,,,,,,NA,NA
0bba34b1d3906400f2b906771114f91bb77eb83b,a7a483144d466d151ab646523a22af47de10bc18,skennedy@android.com,2014-04-01,"Revert ""email: add support for Server Name Indication (SNI)""
This reverts commit a7a483144d466d151ab646523a22af47de10bc18.
Bug: 13744933
Change-Id: I68b95dcca20042639d02d3609ad03aaa3eca0353
",android,platform/packages/apps/Email,others,j.ruesga.criado@gmail.com,2014-03-29,"email: add support for Server Name Indication (SNI)
Change the underlaying socket factory reference to SSLCertificateSocketFactory which
has support for SNI since 4.2, and remove the access to the obsolete methods from
the old factory reference.
This change will setup the socket with a proper hostname prior to the ssl handshake.
Change-Id: Ie537b1d8c3da33de3665e481320be134939155ca
Signed-off-by: Jorge Ruesga <j.ruesga.criado@gmail.com>
",2,Defect introduced,2,Gerrit,3,TRUE,TRUE,,Bug,,,,,,,"Jorge Ruesga: Scott, emailcommon is not prepared to use UnifiedEmail's Utils class. They need to be include as part of imported_unified_email_files variable in emailcommon Android.mk and resources as well, because Utils has some references to UnifiedEmail resources.
At this point, IHMO, I suggest to just keep the ``Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1`` check and don't complicated this patch calling code of the UnifiedEmail app.
Scott Kennedy: (1 comment)
Jorge Ruesga: Sorry for the bug. Worked for my in my tests. :(
The original code uses host + port from arguments. Why just don't use it? createSocket(String host, int port)
There is not need for an InitAddress reference.
Daniel Ochoa: > Yes, that should be fine.
>
> Thanks
The original code used createSocket(socket, host, port, autoClose); Will the revised patch still use this or will it switch to using createSocket(host, port) ?
Yu Ping Hu: (1 comment)
Jorge Ruesga: Fixed here https://android-review.googlesource.com/#/c/119466/
It was working properly for more than 6 months in cm-11.0
Scott Kennedy: Reverted
This patchset was reverted in change: I68b95dcca20042639d02d3609ad03aaa3eca0353
Scott Kennedy: Yes, that should be fine.
Thanks
Scott Kennedy: (1 comment)
We have to revert this.","Yu Ping Hu: Code-Review+2
This was causing crashes, going to revert this for now."
0bcb2902ec21393d71c94e63aa6733cb5311a0cc,8ebd94ab2e0d9867a7d384f00fa4cab24235216f,shertz@google.com,2014-06-17,"Revert ""Revert ""Fix access to FP registers when visiting stack""""
This reverts commit 8ebd94ab2e0d9867a7d384f00fa4cab24235216f.
Fixes StackVisitor::GetVReg to read register value in a uintptr_t local and
cast it into uint32_t pointer argument.
Bug: 15433097
Change-Id: I4e13ed5446e823e9ec50fbc378b16be5b17b2294
",android,platform/art,android,shertz@google.com,2014-06-17,"Revert ""Fix access to FP registers when visiting stack""
This reverts commit aa9b3aee1e06f922e4518713f9b3dff00a0b2597.
Change-Id: Ied27deb89cca5ec9094d391374e03f83fcb76c33
",14,Temporary workaround,0,Commit message,0,TRUE,TRUE,,Bug,,,,Vi,,,"Sebastien Hertz: Code-Review+2 Verified+1
Fail on 64-bit host.","Sebastien Hertz: Verified+1
Builds correctly now."
0c1b4875b58d0f67432684defdeddd2c5d64f478,510b95208a6ec9b92cd9debe954c338a8ca8cf88,enh@google.com,2014-04-25,"Revert ""Fix internal master until I have access again.""
This reverts commit 510b95208a6ec9b92cd9debe954c338a8ca8cf88.
Change-Id: Ifaabadfb43b61bf72bf436451612ebf629a70648
",android,platform/libcore,android,enh@google.com,2014-04-25,"Fix internal master until I have access again.
I need to change a dependency in an internal-only class, but some